diff --git a/.gitattributes b/.gitattributes index 7e2cae0c..7772c942 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6,7 +6,7 @@ src/parser.c linguist-generated src/tree_sitter/* linguist-generated # C bindings -bindings/c/* linguist-generated +bindings/c/** linguist-generated CMakeLists.txt linguist-generated Makefile linguist-generated @@ -35,3 +35,8 @@ go.sum linguist-generated bindings/swift/** linguist-generated Package.swift linguist-generated Package.resolved linguist-generated + +# Zig bindings +bindings/zig/* linguist-generated +build.zig linguist-generated +build.zig.zon linguist-generated diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77d10313..fe4210b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,18 +28,12 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-14] + os: [ubuntu-latest, windows-latest, macos-latest] steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up tree-sitter uses: tree-sitter/setup-action/cli@v2 - - name: Set up examples - run: |- - git clone https://github.com/numpy/numpy examples/numpy --single-branch --depth=1 --filter=blob:none - git clone https://github.com/django/django examples/django --single-branch --depth=1 --filter=blob:none - git clone https://github.com/pallets/flask examples/flask --single-branch --depth=1 --filter=blob:none - git clone https://github.com/python/cpython examples/cpython --single-branch --depth=1 --filter=blob:none - name: Run tests uses: tree-sitter/parser-test-action@v2 with: @@ -48,16 +42,27 @@ jobs: test-python: true test-go: true test-swift: true + - name: Set up examples + run: |- + git clone https://github.com/numpy/numpy examples/numpy --single-branch --depth=1 --filter=blob:none + git clone https://github.com/django/django examples/django --single-branch --depth=1 --filter=blob:none + git clone https://github.com/pallets/flask examples/flask --single-branch --depth=1 --filter=blob:none + git clone https://github.com/python/cpython examples/cpython --single-branch --depth=1 --filter=blob:none - name: Parse examples uses: tree-sitter/parse-action@v4 with: files: | examples/**/*.py + !examples/cpython/Lib/annotationlib.py + !examples/cpython/Lib/string/templatelib.py !examples/cpython/Lib/test/test_annotationlib.py !examples/cpython/Lib/test/test_type_params.py !examples/cpython/Lib/test/test_compile.py !examples/cpython/Tools/build/generate_re_casefix.py !examples/cpython/Lib/test/test_annotationlib.py + !examples/cpython/Lib/test/test_grammar.py + !examples/cpython/Lib/test/test_tstring.py !examples/cpython/Lib/test/test_type_params.py + !examples/cpython/Lib/test/test_string/test_templatelib.py invalid-files: | examples/cpython/Lib/test/tokenizedata/badsyntax_3131.py diff --git a/.gitignore b/.gitignore index 308fcab2..bc9e191a 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,13 @@ dist/ *.dylib *.dll *.pc +*.exp +*.lib + +# Zig artifacts +.zig-cache/ +zig-cache/ +zig-out/ # Example dirs /examples/*/ diff --git a/CMakeLists.txt b/CMakeLists.txt index c9b8e50b..5e23f1ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,11 @@ add_library(tree-sitter-python src/parser.c) if(EXISTS src/scanner.c) target_sources(tree-sitter-python PRIVATE src/scanner.c) endif() -target_include_directories(tree-sitter-python PRIVATE src) +target_include_directories(tree-sitter-python + PRIVATE src + INTERFACE $ + $) + target_compile_definitions(tree-sitter-python PRIVATE $<$:TREE_SITTER_REUSE_ALLOCATOR> @@ -46,8 +50,9 @@ configure_file(bindings/c/tree-sitter-python.pc.in include(GNUInstallDirs) -install(FILES bindings/c/tree-sitter-python.h - DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/tree_sitter") +install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bindings/c/tree_sitter" + DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" + FILES_MATCHING PATTERN "*.h") install(FILES "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-python.pc" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/pkgconfig") install(TARGETS tree-sitter-python diff --git a/Cargo.lock b/Cargo.lock index 91b9f8a8..94b1a359 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,24 +13,77 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.5" +version = "1.2.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c31a0499c1dc64f458ad13872de75c0eb7e3fdb0e67964610c914b034fc5956e" +checksum = "5252b3d2648e5eedbc1a6f501e3c795e07025c1e93bbf8bbdd6eef7f447a6d54" dependencies = [ + "find-msvc-tools", "shlex", ] +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "find-msvc-tools" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d" + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" + +[[package]] +name = "indexmap" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "206a8042aec68fa4a62e8d3f7aa4ceb508177d9324faf261e1959e495b7a1921" +dependencies = [ + "equivalent", + "hashbrown", +] + +[[package]] +name = "itoa" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + [[package]] name = "memchr" -version = "2.7.4" +version = "2.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" +checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" + +[[package]] +name = "proc-macro2" +version = "1.0.101" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" +dependencies = [ + "proc-macro2", +] [[package]] name = "regex" -version = "1.11.1" +version = "1.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" +checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912" dependencies = [ "aho-corasick", "memchr", @@ -40,9 +93,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" +checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6" dependencies = [ "aho-corasick", "memchr", @@ -51,9 +104,48 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" +checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" + +[[package]] +name = "ryu" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" + +[[package]] +name = "serde" +version = "1.0.219" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.219" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.143" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a" +dependencies = [ + "indexmap", + "itoa", + "memchr", + "ryu", + "serde", +] [[package]] name = "shlex" @@ -67,24 +159,36 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520" +[[package]] +name = "syn" +version = "2.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "tree-sitter" -version = "0.24.5" +version = "0.25.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ac95b18f0f727aaaa012bd5179a1916706ee3ed071920fdbda738750b0c0bf5" +checksum = "ccd2a058a86cfece0bf96f7cce1021efef9c8ed0e892ab74639173e5ed7a34fa" dependencies = [ "cc", "regex", "regex-syntax", + "serde_json", "streaming-iterator", "tree-sitter-language", ] [[package]] name = "tree-sitter-language" -version = "0.1.3" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c199356c799a8945965bb5f2c55b2ad9d9aa7c4b4f6e587fe9dea0bc715e5f9c" +checksum = "c4013970217383f67b18aef68f6fb2e8d409bc5755227092d32efb0422ba24b8" [[package]] name = "tree-sitter-python" @@ -94,3 +198,9 @@ dependencies = [ "tree-sitter", "tree-sitter-language", ] + +[[package]] +name = "unicode-ident" +version = "1.0.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" diff --git a/Cargo.toml b/Cargo.toml index 9ecacfa1..8c90b256 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,14 @@ edition = "2021" autoexamples = false build = "bindings/rust/build.rs" -include = ["LICENSE", "bindings/rust/*", "grammar.js", "queries/*", "src/*", "tree-sitter.json"] +include = [ + "bindings/rust/*", + "grammar.js", + "queries/*", + "src/*", + "tree-sitter.json", + "LICENSE", +] [lib] path = "bindings/rust/lib.rs" @@ -24,7 +31,7 @@ path = "bindings/rust/lib.rs" tree-sitter-language = "0.1" [build-dependencies] -cc = "1.1" +cc = "1.2" [dev-dependencies] -tree-sitter = "0.24" +tree-sitter = "0.25.8" diff --git a/Makefile b/Makefile index bd8f3ced..a139ac08 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ TS ?= tree-sitter # install directory layout PREFIX ?= /usr/local +DATADIR ?= $(PREFIX)/share INCLUDEDIR ?= $(PREFIX)/include LIBDIR ?= $(PREFIX)/lib PCLIBDIR ?= $(LIBDIR)/pkgconfig @@ -69,13 +70,16 @@ $(PARSER): $(SRC_DIR)/grammar.json $(TS) generate $^ install: all - install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' - install -m644 bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -d '$(DESTDIR)$(DATADIR)'/tree-sitter/queries/python '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' + install -m644 bindings/c/tree_sitter/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc install -m644 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) +ifneq ($(wildcard queries/*.scm),) + install -m644 queries/*.scm '$(DESTDIR)$(DATADIR)'/tree-sitter/queries/python +endif uninstall: $(RM) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a \ @@ -84,6 +88,7 @@ uninstall: '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) \ '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h \ '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + $(RM) -r '$(DESTDIR)$(DATADIR)'/tree-sitter/queries/python clean: $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) diff --git a/Package.swift b/Package.swift index 684993b7..d3032ed8 100644 --- a/Package.swift +++ b/Package.swift @@ -1,24 +1,27 @@ // swift-tools-version:5.3 + +import Foundation import PackageDescription +var sources = ["src/parser.c"] +if FileManager.default.fileExists(atPath: "src/scanner.c") { + sources.append("src/scanner.c") +} + let package = Package( name: "TreeSitterPython", - defaultLocalization: "en", products: [ .library(name: "TreeSitterPython", targets: ["TreeSitterPython"]), ], dependencies: [ - .package(url: "https://github.com/ChimeHQ/SwiftTreeSitter", from: "0.8.0"), + .package(name: "SwiftTreeSitter", url: "https://github.com/tree-sitter/swift-tree-sitter", from: "0.9.0"), ], targets: [ .target( name: "TreeSitterPython", dependencies: [], path: ".", - sources: [ - "src/parser.c", - "src/scanner.c", - ], + sources: sources, resources: [ .copy("queries") ], diff --git a/binding.gyp b/binding.gyp index 33d4c52b..eab2dd96 100644 --- a/binding.gyp +++ b/binding.gyp @@ -11,9 +11,14 @@ "sources": [ "bindings/node/binding.cc", "src/parser.c", - "src/scanner.c", ], + "variables": { + "has_scanner": "::New(env, tree_sitter_python()); language.TypeTag(&LANGUAGE_TYPE_TAG); exports["language"] = language; diff --git a/bindings/node/index.d.ts b/bindings/node/index.d.ts index efe259ee..528e060f 100644 --- a/bindings/node/index.d.ts +++ b/bindings/node/index.d.ts @@ -19,7 +19,6 @@ type NodeInfo = }); type Language = { - name: string; language: unknown; nodeTypeInfo: NodeInfo[]; }; diff --git a/bindings/python/tests/test_binding.py b/bindings/python/tests/test_binding.py index c059cc6f..04a18f65 100644 --- a/bindings/python/tests/test_binding.py +++ b/bindings/python/tests/test_binding.py @@ -1,11 +1,12 @@ from unittest import TestCase -import tree_sitter, tree_sitter_python +from tree_sitter import Language, Parser +import tree_sitter_python class TestLanguage(TestCase): def test_can_load_grammar(self): try: - tree_sitter.Language(tree_sitter_python.language()) + Parser(Language(tree_sitter_python.language())) except Exception: self.fail("Error loading Python grammar") diff --git a/bindings/python/tree_sitter_python/binding.c b/bindings/python/tree_sitter_python/binding.c index 84d8016f..bfe86544 100644 --- a/bindings/python/tree_sitter_python/binding.c +++ b/bindings/python/tree_sitter_python/binding.c @@ -8,6 +8,13 @@ static PyObject* _binding_language(PyObject *Py_UNUSED(self), PyObject *Py_UNUSE return PyCapsule_New(tree_sitter_python(), "tree_sitter.Language", NULL); } +static struct PyModuleDef_Slot slots[] = { +#ifdef Py_GIL_DISABLED + {Py_mod_gil, Py_MOD_GIL_NOT_USED}, +#endif + {0, NULL} +}; + static PyMethodDef methods[] = { {"language", _binding_language, METH_NOARGS, "Get the tree-sitter language for this grammar."}, @@ -18,10 +25,11 @@ static struct PyModuleDef module = { .m_base = PyModuleDef_HEAD_INIT, .m_name = "_binding", .m_doc = NULL, - .m_size = -1, - .m_methods = methods + .m_size = 0, + .m_methods = methods, + .m_slots = slots, }; PyMODINIT_FUNC PyInit__binding(void) { - return PyModule_Create(&module); + return PyModuleDef_Init(&module); } diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index 7183aee4..20d43d38 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -15,8 +15,10 @@ fn main() { println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); let scanner_path = src_dir.join("scanner.c"); - c_config.file(&scanner_path); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + if scanner_path.exists() { + c_config.file(&scanner_path); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + } c_config.compile("tree-sitter-python"); } diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index 169a4b56..35cf9a6d 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -1,16 +1,14 @@ -//! This crate provides Python language support for the [tree-sitter][] parsing library. +//! This crate provides Python language support for the [tree-sitter] parsing library. //! -//! Typically, you will use the [LANGUAGE][] constant to add this language to a -//! tree-sitter [Parser][], and then use the parser to parse some code: +//! Typically, you will use the [`LANGUAGE`] constant to add this language to a +//! tree-sitter [`Parser`], and then use the parser to parse some code: //! //! ``` -//! use tree_sitter::Parser; -//! //! let code = r#" //! def double(x): //! return x * 2 //! "#; -//! let mut parser = Parser::new(); +//! let mut parser = tree_sitter::Parser::new(); //! let language = tree_sitter_python::LANGUAGE; //! parser //! .set_language(&language.into()) @@ -19,7 +17,7 @@ //! assert!(!tree.root_node().has_error()); //! ``` //! -//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html +//! [`Parser`]: https://docs.rs/tree-sitter/0.25.8/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ use tree_sitter_language::LanguageFn; @@ -28,14 +26,12 @@ extern "C" { fn tree_sitter_python() -> *const (); } -/// The tree-sitter [`LanguageFn`][LanguageFn] for this grammar. -/// -/// [LanguageFn]: https://docs.rs/tree-sitter-language/*/tree_sitter_language/struct.LanguageFn.html +/// The tree-sitter [`LanguageFn`] for this grammar. pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_python) }; -/// The content of the [`node-types.json`][] file for this grammar. +/// The content of the [`node-types.json`] file for this grammar. /// -/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers/6-static-node-types pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); /// The syntax highlighting query for this language. diff --git a/grammar.js b/grammar.js index 2034d450..4378d356 100644 --- a/grammar.js +++ b/grammar.js @@ -99,6 +99,19 @@ module.exports = grammar({ $.keyword_identifier, ], + reserved: { + global: _ => [ + // https://docs.python.org/3/reference/lexical_analysis.html#keywords + 'False', 'await', 'else', 'import', 'pass', + 'None', 'break', 'except', 'in', 'raise', + 'True', 'class', 'finally', 'is', 'return', + 'and', 'continue', 'for', 'lambda', 'try', + 'as', 'def', 'from', 'nonlocal', 'while', + 'assert', 'del', 'global', 'not', 'with', + 'async', 'elif', 'if', 'or', 'yield', + ], + }, + word: $ => $.identifier, rules: { diff --git a/package-lock.json b/package-lock.json index fb1270df..01e28f5f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,17 +10,17 @@ "hasInstallScript": true, "license": "MIT", "dependencies": { - "node-addon-api": "^8.3.0", + "node-addon-api": "^8.5.0", "node-gyp-build": "^4.8.4" }, "devDependencies": { - "eslint": "^9.17.0", + "eslint": "^9.35.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", - "tree-sitter-cli": "^0.24.5" + "tree-sitter-cli": "^0.25.9" }, "peerDependencies": { - "tree-sitter": "^0.22.1" + "tree-sitter": "^0.25.0" }, "peerDependenciesMeta": { "tree-sitter": { @@ -30,9 +30,8 @@ }, "node_modules/@es-joy/jsdoccomment": { "version": "0.49.0", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.49.0.tgz", - "integrity": "sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==", "dev": true, + "license": "MIT", "dependencies": { "comment-parser": "1.4.1", "esquery": "^1.6.0", @@ -43,36 +42,53 @@ } }, "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", "dev": true, + "license": "MIT", "dependencies": { - "eslint-visitor-keys": "^3.3.0" + "eslint-visitor-keys": "^3.4.3" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, + "funding": { + "url": "https://opencollective.com/eslint" + }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, "node_modules/@eslint-community/regexpp": { "version": "4.12.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", - "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", "dev": true, + "license": "MIT", "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, "node_modules/@eslint/config-array": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.0.tgz", - "integrity": "sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==", + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz", + "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@eslint/object-schema": "^2.1.4", + "@eslint/object-schema": "^2.1.6", "debug": "^4.3.1", "minimatch": "^3.1.2" }, @@ -80,20 +96,35 @@ "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, + "node_modules/@eslint/config-helpers": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz", + "integrity": "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, "node_modules/@eslint/core": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.0.tgz", - "integrity": "sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==", + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz", + "integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==", "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/eslintrc": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", - "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", "dev": true, + "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", @@ -113,30 +144,36 @@ } }, "node_modules/@eslint/js": { - "version": "9.17.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.17.0.tgz", - "integrity": "sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==", + "version": "9.35.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.35.0.tgz", + "integrity": "sha512-30iXE9whjlILfWobBkNerJo+TXYsgVM5ERQwMcMKCHckHflCmf7wXDAHlARoWnh0s1U72WqlbeyE7iAcCzuCPw==", "dev": true, "license": "MIT", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" } }, "node_modules/@eslint/object-schema": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", - "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/plugin-kit": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.3.tgz", - "integrity": "sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz", + "integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==", "dev": true, + "license": "Apache-2.0", "dependencies": { + "@eslint/core": "^0.15.2", "levn": "^0.4.1" }, "engines": { @@ -145,18 +182,16 @@ }, "node_modules/@humanfs/core": { "version": "0.19.1", - "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", - "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=18.18.0" } }, "node_modules/@humanfs/node": { "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", - "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", "dev": true, + "license": "Apache-2.0", "dependencies": { "@humanfs/core": "^0.19.1", "@humanwhocodes/retry": "^0.3.0" @@ -167,9 +202,8 @@ }, "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", - "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=18.18" }, @@ -180,9 +214,8 @@ }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=12.22" }, @@ -192,10 +225,11 @@ } }, "node_modules/@humanwhocodes/retry": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", - "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=18.18" }, @@ -206,9 +240,8 @@ }, "node_modules/@pkgr/core": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", - "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", "dev": true, + "license": "MIT", "engines": { "node": "^12.20.0 || ^14.18.0 || >=16.0.0" }, @@ -218,21 +251,20 @@ }, "node_modules/@types/estree": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/json-schema": { "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/acorn": { - "version": "8.14.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", - "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -242,9 +274,8 @@ }, "node_modules/acorn-jsx": { "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, + "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } @@ -254,6 +285,7 @@ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -267,9 +299,8 @@ }, "node_modules/ansi-styles": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -282,9 +313,8 @@ }, "node_modules/are-docs-informative": { "version": "0.0.2", - "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", - "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", "dev": true, + "license": "MIT", "engines": { "node": ">=14" } @@ -293,18 +323,18 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "dev": true, + "license": "Python-2.0" }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/base64-js": { "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, "funding": [ { @@ -319,13 +349,13 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/bl": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, + "license": "MIT", "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", @@ -333,10 +363,11 @@ } }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -344,8 +375,6 @@ }, "node_modules/buffer": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "funding": [ { @@ -361,6 +390,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" @@ -371,15 +401,15 @@ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -393,15 +423,13 @@ }, "node_modules/chownr": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -411,15 +439,13 @@ }, "node_modules/color-name": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/comment-parser": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.1.tgz", - "integrity": "sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 12.0.0" } @@ -428,13 +454,13 @@ "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/cross-spawn": { "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -446,9 +472,8 @@ }, "node_modules/debug": { "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", "dev": true, + "license": "MIT", "dependencies": { "ms": "^2.1.3" }, @@ -463,30 +488,26 @@ }, "node_modules/deep-is": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/end-of-stream": { "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, + "license": "MIT", "dependencies": { "once": "^1.4.0" } }, "node_modules/es-module-lexer": { "version": "1.5.4", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", - "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/escape-string-regexp": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -495,22 +516,23 @@ } }, "node_modules/eslint": { - "version": "9.17.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.17.0.tgz", - "integrity": "sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==", + "version": "9.35.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.35.0.tgz", + "integrity": "sha512-QePbBFMJFjgmlE+cXAlbHZbHpdFVS2E/6vzCy7aKlebddvl1vadiC4JFV5u/wqTkNUwEV8WrQi257jf5f06hrg==", "dev": true, "license": "MIT", "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", - "@eslint/config-array": "^0.19.0", - "@eslint/core": "^0.9.0", - "@eslint/eslintrc": "^3.2.0", - "@eslint/js": "9.17.0", - "@eslint/plugin-kit": "^0.2.3", + "@eslint/config-array": "^0.21.0", + "@eslint/config-helpers": "^0.3.1", + "@eslint/core": "^0.15.2", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.35.0", + "@eslint/plugin-kit": "^0.3.5", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.4.1", + "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", @@ -518,9 +540,9 @@ "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^8.2.0", - "eslint-visitor-keys": "^4.2.0", - "espree": "^10.3.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -556,9 +578,8 @@ }, "node_modules/eslint-config-treesitter": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/eslint-config-treesitter/-/eslint-config-treesitter-1.0.2.tgz", - "integrity": "sha512-OkzjA0oaNgYUFkGmo9T2cvRE7cxzh1dgSt0laO8Hdcypp9di8lebldoPivALXFusRb7s54J5exIw1w7l+g85Rg==", "dev": true, + "license": "MIT", "dependencies": { "eslint-plugin-jsdoc": "^50.2.4" }, @@ -568,9 +589,8 @@ }, "node_modules/eslint-plugin-jsdoc": { "version": "50.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.4.1.tgz", - "integrity": "sha512-OXIq+JJQPCLAKL473/esioFOwbXyRE5MAQ4HbZjcp3e+K3zdxt2uDpGs3FR+WezUXNStzEtTfgx15T+JFrVwBA==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@es-joy/jsdoccomment": "~0.49.0", "are-docs-informative": "^0.0.2", @@ -592,10 +612,11 @@ } }, "node_modules/eslint-scope": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", - "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" @@ -608,22 +629,11 @@ } }, "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, @@ -632,14 +642,15 @@ } }, "node_modules/espree": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", - "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "acorn": "^8.14.0", + "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^4.2.0" + "eslint-visitor-keys": "^4.2.1" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -648,23 +659,10 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", - "dev": true, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, "node_modules/esquery": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", - "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" }, @@ -677,6 +675,7 @@ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, @@ -686,18 +685,16 @@ }, "node_modules/estraverse": { "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/esutils": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } @@ -706,25 +703,25 @@ "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/file-entry-cache": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", - "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, + "license": "MIT", "dependencies": { "flat-cache": "^4.0.0" }, @@ -734,9 +731,8 @@ }, "node_modules/find-up": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, + "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -750,9 +746,8 @@ }, "node_modules/flat-cache": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", - "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, + "license": "MIT", "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" @@ -763,21 +758,18 @@ }, "node_modules/flatted": { "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/fs-constants": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/glob-parent": { "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, + "license": "ISC", "dependencies": { "is-glob": "^4.0.3" }, @@ -790,6 +782,7 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=18" }, @@ -799,17 +792,14 @@ }, "node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ieee754": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, "funding": [ { @@ -824,22 +814,25 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "BSD-3-Clause" }, "node_modules/ignore": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dev": true, + "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -853,33 +846,29 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.19" } }, "node_modules/inherits": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/is-extglob": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-glob": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, + "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, @@ -889,15 +878,15 @@ }, "node_modules/isexe": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -907,45 +896,41 @@ }, "node_modules/jsdoc-type-pratt-parser": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.1.0.tgz", - "integrity": "sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==", "dev": true, + "license": "MIT", "engines": { "node": ">=12.0.0" } }, "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 + "dev": true, + "license": "MIT" }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true + "dev": true, + "license": "MIT" }, "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, + "license": "MIT", "dependencies": { "json-buffer": "3.0.1" } }, "node_modules/levn": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" @@ -956,9 +941,8 @@ }, "node_modules/locate-path": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, + "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, @@ -971,15 +955,15 @@ }, "node_modules/lodash.merge": { "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, + "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -989,36 +973,31 @@ }, "node_modules/minimist": { "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/mkdirp-classic": { "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/ms": { "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/natural-compare": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/node-abi": { "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, + "license": "MIT", "dependencies": { "semver": "^7.3.5" }, @@ -1027,17 +1006,17 @@ } }, "node_modules/node-addon-api": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.3.0.tgz", - "integrity": "sha512-8VOpLHFrOQlAH+qA0ZzuGRlALRA6/LVh8QJldbrC4DY0hXoMP0l4Acq8TzFC018HztWiRqyCEj2aTWY2UvnJUg==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.5.0.tgz", + "integrity": "sha512-/bRZty2mXUIFY/xU5HLvveNHlswNJej+RnxBjOMkidWfwZzgTbPG1E3K5TOxRLOR+5hX7bSofy8yf1hZevMS8A==", + "license": "MIT", "engines": { "node": "^18 || ^20 || >= 21" } }, "node_modules/node-gyp-build": { "version": "4.8.4", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", - "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", + "license": "MIT", "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", @@ -1046,9 +1025,8 @@ }, "node_modules/npm-run-path": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", - "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^3.0.0" }, @@ -1058,18 +1036,16 @@ }, "node_modules/once": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, + "license": "ISC", "dependencies": { "wrappy": "1" } }, "node_modules/optionator": { "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, + "license": "MIT", "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", @@ -1084,9 +1060,8 @@ }, "node_modules/p-limit": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, + "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -1099,9 +1074,8 @@ }, "node_modules/p-locate": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, + "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, @@ -1117,6 +1091,7 @@ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, + "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, @@ -1126,9 +1101,8 @@ }, "node_modules/parse-imports": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/parse-imports/-/parse-imports-2.2.1.tgz", - "integrity": "sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==", "dev": true, + "license": "Apache-2.0 AND MIT", "dependencies": { "es-module-lexer": "^1.5.3", "slashes": "^3.0.12" @@ -1139,27 +1113,24 @@ }, "node_modules/path-exists": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path-key": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/prebuildify": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", - "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", "dev": true, + "license": "MIT", "dependencies": { "minimist": "^1.2.5", "mkdirp-classic": "^0.5.3", @@ -1174,18 +1145,16 @@ }, "node_modules/prelude-ls": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8.0" } }, "node_modules/pump": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, + "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -1196,15 +1165,15 @@ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/readable-stream": { "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, + "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -1219,14 +1188,13 @@ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/safe-buffer": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, "funding": [ { @@ -1241,13 +1209,13 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/semver": { "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -1257,9 +1225,8 @@ }, "node_modules/shebang-command": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, + "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -1269,30 +1236,26 @@ }, "node_modules/shebang-regex": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/slashes": { "version": "3.0.12", - "resolved": "https://registry.npmjs.org/slashes/-/slashes-3.0.12.tgz", - "integrity": "sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/spdx-exceptions": { "version": "2.5.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", - "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", - "dev": true + "dev": true, + "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", - "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==", "dev": true, + "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" @@ -1300,15 +1263,13 @@ }, "node_modules/spdx-license-ids": { "version": "3.0.20", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", - "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", - "dev": true + "dev": true, + "license": "CC0-1.0" }, "node_modules/string_decoder": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, + "license": "MIT", "dependencies": { "safe-buffer": "~5.2.0" } @@ -1318,6 +1279,7 @@ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -1327,9 +1289,8 @@ }, "node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -1339,9 +1300,8 @@ }, "node_modules/synckit": { "version": "0.9.2", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz", - "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==", "dev": true, + "license": "MIT", "dependencies": { "@pkgr/core": "^0.1.0", "tslib": "^2.6.2" @@ -1354,10 +1314,11 @@ } }, "node_modules/tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.3.tgz", + "integrity": "sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==", "dev": true, + "license": "MIT", "dependencies": { "chownr": "^1.1.1", "mkdirp-classic": "^0.5.2", @@ -1367,9 +1328,8 @@ }, "node_modules/tar-stream": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "dev": true, + "license": "MIT", "dependencies": { "bl": "^4.0.3", "end-of-stream": "^1.4.1", @@ -1382,21 +1342,22 @@ } }, "node_modules/tree-sitter": { - "version": "0.22.1", - "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.22.1.tgz", - "integrity": "sha512-gRO+jk2ljxZlIn20QRskIvpLCMtzuLl5T0BY6L9uvPYD17uUrxlxWkvYCiVqED2q2q7CVtY52Uex4WcYo2FEXw==", + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.25.0.tgz", + "integrity": "sha512-PGZZzFW63eElZJDe/b/R/LbsjDDYJa5UEjLZJB59RQsMX+fo0j54fqBPn1MGKav/QNa0JR0zBiVaikYDWCj5KQ==", "hasInstallScript": true, + "license": "MIT", "optional": true, "peer": true, "dependencies": { - "node-addon-api": "^8.2.1", - "node-gyp-build": "^4.8.2" + "node-addon-api": "^8.3.0", + "node-gyp-build": "^4.8.4" } }, "node_modules/tree-sitter-cli": { - "version": "0.24.5", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.24.5.tgz", - "integrity": "sha512-8EIgV/ERQlpvk1rPSCCjxveAb6Sba8tMiBpeeL68Mueuuqr0wNfhps/I1nFm2OTnpPCUV2PS9nbzzAMoyxSQUg==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.25.9.tgz", + "integrity": "sha512-xcS2EJlNdwG529/JcYl5jV0ew/wY+HXvyNe8nkqhDCwQqxCH7odc9oLKxIWePQqmIKgieZ0YaGyieYKQI3MTKQ==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -1409,15 +1370,13 @@ }, "node_modules/tslib": { "version": "2.7.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", - "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", - "dev": true + "dev": true, + "license": "0BSD" }, "node_modules/type-check": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" }, @@ -1430,21 +1389,20 @@ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" } }, "node_modules/util-deprecate": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/which": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -1457,24 +1415,21 @@ }, "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, + "license": "MIT", "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 + "dev": true, + "license": "ISC" }, "node_modules/yocto-queue": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, diff --git a/package.json b/package.json index a80d172c..d41ecf6b 100644 --- a/package.json +++ b/package.json @@ -33,17 +33,17 @@ "*.wasm" ], "dependencies": { - "node-addon-api": "^8.3.0", + "node-addon-api": "^8.5.0", "node-gyp-build": "^4.8.4" }, "devDependencies": { - "eslint": "^9.17.0", + "eslint": "^9.35.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", - "tree-sitter-cli": "^0.24.5" + "tree-sitter-cli": "^0.25.9" }, "peerDependencies": { - "tree-sitter": "^0.22.1" + "tree-sitter": "^0.25.0" }, "peerDependenciesMeta": { "tree-sitter": { diff --git a/pyproject.toml b/pyproject.toml index faaa0d27..b8175f3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=42", "wheel"] +requires = ["setuptools>=62.4.0", "wheel"] build-backend = "setuptools.build_meta" [project] @@ -9,7 +9,6 @@ version = "0.23.6" keywords = ["incremental", "parsing", "tree-sitter", "python"] classifiers = [ "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Compilers", "Topic :: Text Processing :: Linguistic", "Typing :: Typed", @@ -18,7 +17,7 @@ authors = [ { name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com" }, { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, ] -requires-python = ">=3.9" +requires-python = ">=3.10" license.text = "MIT" readme = "README.md" @@ -26,8 +25,8 @@ readme = "README.md" Homepage = "https://github.com/tree-sitter/tree-sitter-python" [project.optional-dependencies] -core = ["tree-sitter~=0.22"] +core = ["tree-sitter~=0.24"] [tool.cibuildwheel] -build = "cp39-*" +build = "cp310-*" build-frontend = "build" diff --git a/setup.py b/setup.py index 80dc51c2..fe677f15 100644 --- a/setup.py +++ b/setup.py @@ -1,27 +1,49 @@ -from os.path import isdir, join -from platform import system +from os import path +from sysconfig import get_config_var from setuptools import Extension, find_packages, setup from setuptools.command.build import build +from setuptools.command.build_ext import build_ext +from setuptools.command.egg_info import egg_info from wheel.bdist_wheel import bdist_wheel class Build(build): def run(self): - if isdir("queries"): - dest = join(self.build_lib, "tree_sitter_python", "queries") + if path.isdir("queries"): + dest = path.join(self.build_lib, "tree_sitter_python", "queries") self.copy_tree("queries", dest) super().run() +class BuildExt(build_ext): + def build_extension(self, ext: Extension): + if self.compiler.compiler_type != "msvc": + ext.extra_compile_args = ["-std=c11", "-fvisibility=hidden"] + else: + ext.extra_compile_args = ["/std:c11", "/utf-8"] + if path.exists("src/scanner.c"): + ext.sources.append("src/scanner.c") + if ext.py_limited_api: + ext.define_macros.append(("Py_LIMITED_API", "0x030A0000")) + super().build_extension(ext) + + class BdistWheel(bdist_wheel): def get_tag(self): python, abi, platform = super().get_tag() if python.startswith("cp"): - python, abi = "cp39", "abi3" + python, abi = "cp310", "abi3" return python, abi, platform +class EggInfo(egg_info): + def find_sources(self): + super().find_sources() + self.filelist.recursive_include("queries", "*.scm") + self.filelist.include("src/tree_sitter/*.h") + + setup( packages=find_packages("bindings/python"), package_dir={"": "bindings/python"}, @@ -36,27 +58,20 @@ def get_tag(self): sources=[ "bindings/python/tree_sitter_python/binding.c", "src/parser.c", - "src/scanner.c", - ], - extra_compile_args=[ - "-std=c11", - "-fvisibility=hidden", - ] if system() != "Windows" else [ - "/std:c11", - "/utf-8", ], define_macros=[ - ("Py_LIMITED_API", "0x03090000"), ("PY_SSIZE_T_CLEAN", None), ("TREE_SITTER_HIDE_SYMBOLS", None), ], include_dirs=["src"], - py_limited_api=True, + py_limited_api=not get_config_var("Py_GIL_DISABLED"), ) ], cmdclass={ "build": Build, - "bdist_wheel": BdistWheel + "build_ext": BuildExt, + "bdist_wheel": BdistWheel, + "egg_info": EggInfo, }, zip_safe=False ) diff --git a/src/grammar.json b/src/grammar.json index c56c0f17..ccd99e81 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6336,5 +6336,149 @@ "primary_expression", "pattern", "parameter" - ] -} + ], + "reserved": { + "global": [ + { + "type": "STRING", + "value": "False" + }, + { + "type": "STRING", + "value": "await" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": "import" + }, + { + "type": "STRING", + "value": "pass" + }, + { + "type": "STRING", + "value": "None" + }, + { + "type": "STRING", + "value": "break" + }, + { + "type": "STRING", + "value": "except" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "raise" + }, + { + "type": "STRING", + "value": "True" + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "STRING", + "value": "finally" + }, + { + "type": "STRING", + "value": "is" + }, + { + "type": "STRING", + "value": "return" + }, + { + "type": "STRING", + "value": "and" + }, + { + "type": "STRING", + "value": "continue" + }, + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "lambda" + }, + { + "type": "STRING", + "value": "try" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "STRING", + "value": "def" + }, + { + "type": "STRING", + "value": "from" + }, + { + "type": "STRING", + "value": "nonlocal" + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "STRING", + "value": "assert" + }, + { + "type": "STRING", + "value": "del" + }, + { + "type": "STRING", + "value": "global" + }, + { + "type": "STRING", + "value": "not" + }, + { + "type": "STRING", + "value": "with" + }, + { + "type": "STRING", + "value": "async" + }, + { + "type": "STRING", + "value": "elif" + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "STRING", + "value": "or" + }, + { + "type": "STRING", + "value": "yield" + } + ] + } +} \ No newline at end of file diff --git a/src/node-types.json b/src/node-types.json index 18d43b49..39273b76 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3574,7 +3574,8 @@ }, { "type": "comment", - "named": true + "named": true, + "extra": true }, { "type": "continue", @@ -3674,7 +3675,8 @@ }, { "type": "line_continuation", - "named": true + "named": true, + "extra": true }, { "type": "match", diff --git a/src/parser.c b/src/parser.c index 3bdb5bb6..0ca6b85f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,19 +1,23 @@ +/* Automatically @generated by tree-sitter v0.25.9 */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 2809 -#define LARGE_STATE_COUNT 190 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 2789 +#define LARGE_STATE_COUNT 184 #define SYMBOL_COUNT 273 #define ALIAS_COUNT 2 #define TOKEN_COUNT 108 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define MAX_RESERVED_WORD_SET_SIZE 35 #define PRODUCTION_ID_COUNT 142 +#define SUPERTYPE_COUNT 4 enum ts_symbol_identifiers { sym_identifier = 1, @@ -2026,7 +2030,7 @@ static const char * const ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [3] = {.index = 0, .length = 1}, [4] = {.index = 1, .length = 1}, [6] = {.index = 2, .length = 1}, @@ -2783,7 +2787,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, + [3] = 2, [4] = 4, [5] = 5, [6] = 6, @@ -2796,7 +2800,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [13] = 13, [14] = 14, [15] = 15, - [16] = 2, + [16] = 16, [17] = 17, [18] = 18, [19] = 19, @@ -2815,67 +2819,67 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [32] = 32, [33] = 33, [34] = 34, - [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] = 34, - [49] = 17, - [50] = 18, - [51] = 19, - [52] = 20, - [53] = 21, - [54] = 22, - [55] = 24, - [56] = 25, - [57] = 28, - [58] = 29, + [35] = 4, + [36] = 5, + [37] = 6, + [38] = 7, + [39] = 8, + [40] = 9, + [41] = 10, + [42] = 11, + [43] = 12, + [44] = 13, + [45] = 14, + [46] = 15, + [47] = 16, + [48] = 17, + [49] = 18, + [50] = 19, + [51] = 20, + [52] = 21, + [53] = 22, + [54] = 24, + [55] = 25, + [56] = 28, + [57] = 29, + [58] = 30, [59] = 59, - [60] = 30, + [60] = 34, [61] = 59, [62] = 62, [63] = 63, [64] = 64, [65] = 62, [66] = 62, - [67] = 63, + [67] = 62, [68] = 62, [69] = 62, - [70] = 62, - [71] = 62, - [72] = 62, + [70] = 63, + [71] = 71, + [72] = 72, [73] = 73, [74] = 74, [75] = 75, [76] = 76, - [77] = 75, - [78] = 78, - [79] = 78, - [80] = 80, - [81] = 80, - [82] = 76, + [77] = 74, + [78] = 73, + [79] = 75, + [80] = 76, + [81] = 81, + [82] = 81, [83] = 83, [84] = 83, [85] = 85, - [86] = 85, + [86] = 86, [87] = 87, [88] = 88, - [89] = 89, + [89] = 86, [90] = 90, - [91] = 91, + [91] = 90, [92] = 92, [93] = 93, - [94] = 94, - [95] = 95, + [94] = 85, + [95] = 92, [96] = 96, [97] = 97, [98] = 98, @@ -2886,630 +2890,630 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [103] = 103, [104] = 104, [105] = 105, - [106] = 97, + [106] = 106, [107] = 107, - [108] = 92, - [109] = 96, - [110] = 88, - [111] = 95, - [112] = 99, - [113] = 113, + [108] = 105, + [109] = 98, + [110] = 93, + [111] = 87, + [112] = 112, + [113] = 97, [114] = 114, - [115] = 90, + [115] = 115, [116] = 116, - [117] = 98, - [118] = 91, - [119] = 119, - [120] = 102, + [117] = 99, + [118] = 118, + [119] = 88, + [120] = 112, [121] = 121, - [122] = 113, - [123] = 103, - [124] = 121, - [125] = 93, + [122] = 100, + [123] = 102, + [124] = 103, + [125] = 125, [126] = 126, - [127] = 104, - [128] = 94, - [129] = 100, - [130] = 87, - [131] = 107, - [132] = 126, - [133] = 114, - [134] = 134, + [127] = 121, + [128] = 114, + [129] = 129, + [130] = 101, + [131] = 106, + [132] = 125, + [133] = 129, + [134] = 96, [135] = 135, - [136] = 89, - [137] = 137, + [136] = 135, + [137] = 135, [138] = 138, [139] = 138, - [140] = 137, + [140] = 135, [141] = 138, - [142] = 137, + [142] = 135, [143] = 138, - [144] = 137, - [145] = 137, + [144] = 138, + [145] = 135, [146] = 138, - [147] = 137, - [148] = 138, - [149] = 137, - [150] = 138, - [151] = 137, - [152] = 138, - [153] = 153, - [154] = 154, - [155] = 154, - [156] = 156, - [157] = 157, - [158] = 154, - [159] = 156, - [160] = 156, - [161] = 161, - [162] = 157, - [163] = 157, - [164] = 164, - [165] = 157, - [166] = 164, - [167] = 167, - [168] = 156, - [169] = 157, - [170] = 157, - [171] = 161, - [172] = 167, - [173] = 161, - [174] = 154, - [175] = 157, - [176] = 161, - [177] = 154, - [178] = 156, - [179] = 164, - [180] = 180, - [181] = 161, - [182] = 156, - [183] = 157, - [184] = 161, - [185] = 161, - [186] = 161, - [187] = 180, - [188] = 156, - [189] = 189, - [190] = 190, - [191] = 191, - [192] = 192, - [193] = 190, - [194] = 190, - [195] = 191, - [196] = 192, - [197] = 190, - [198] = 198, - [199] = 198, - [200] = 191, - [201] = 192, - [202] = 190, - [203] = 191, - [204] = 192, - [205] = 190, - [206] = 192, - [207] = 191, - [208] = 192, - [209] = 190, - [210] = 191, - [211] = 191, + [147] = 147, + [148] = 148, + [149] = 148, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 151, + [154] = 150, + [155] = 148, + [156] = 150, + [157] = 151, + [158] = 158, + [159] = 151, + [160] = 160, + [161] = 160, + [162] = 151, + [163] = 150, + [164] = 151, + [165] = 152, + [166] = 152, + [167] = 158, + [168] = 151, + [169] = 152, + [170] = 170, + [171] = 160, + [172] = 148, + [173] = 150, + [174] = 150, + [175] = 151, + [176] = 152, + [177] = 148, + [178] = 152, + [179] = 152, + [180] = 152, + [181] = 150, + [182] = 170, + [183] = 183, + [184] = 184, + [185] = 184, + [186] = 184, + [187] = 187, + [188] = 188, + [189] = 184, + [190] = 187, + [191] = 188, + [192] = 187, + [193] = 188, + [194] = 184, + [195] = 184, + [196] = 196, + [197] = 197, + [198] = 187, + [199] = 188, + [200] = 184, + [201] = 188, + [202] = 187, + [203] = 187, + [204] = 188, + [205] = 187, + [206] = 188, + [207] = 184, + [208] = 187, + [209] = 188, + [210] = 188, + [211] = 188, [212] = 212, - [213] = 191, - [214] = 192, - [215] = 190, - [216] = 192, + [213] = 213, + [214] = 187, + [215] = 188, + [216] = 197, [217] = 217, [218] = 218, - [219] = 191, - [220] = 192, - [221] = 192, - [222] = 192, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 226, - [228] = 228, - [229] = 228, - [230] = 228, - [231] = 228, - [232] = 225, - [233] = 226, - [234] = 226, - [235] = 235, + [219] = 219, + [220] = 220, + [221] = 219, + [222] = 222, + [223] = 220, + [224] = 220, + [225] = 222, + [226] = 219, + [227] = 219, + [228] = 220, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 233, [236] = 236, [237] = 237, - [238] = 235, - [239] = 239, - [240] = 240, - [241] = 241, - [242] = 237, + [238] = 238, + [239] = 232, + [240] = 231, + [241] = 233, + [242] = 232, [243] = 243, [244] = 244, [245] = 245, - [246] = 244, - [247] = 244, + [246] = 232, + [247] = 232, [248] = 248, - [249] = 224, - [250] = 244, + [249] = 217, + [250] = 232, [251] = 251, - [252] = 244, - [253] = 253, - [254] = 237, - [255] = 255, - [256] = 244, - [257] = 236, - [258] = 237, - [259] = 244, - [260] = 260, - [261] = 235, - [262] = 262, - [263] = 235, - [264] = 244, - [265] = 255, - [266] = 255, - [267] = 255, - [268] = 223, - [269] = 240, - [270] = 253, - [271] = 248, + [252] = 252, + [253] = 231, + [254] = 232, + [255] = 233, + [256] = 256, + [257] = 229, + [258] = 231, + [259] = 229, + [260] = 229, + [261] = 232, + [262] = 237, + [263] = 245, + [264] = 248, + [265] = 234, + [266] = 218, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 268, + [271] = 269, [272] = 272, - [273] = 273, + [273] = 272, [274] = 274, [275] = 275, - [276] = 273, - [277] = 274, - [278] = 278, - [279] = 279, - [280] = 275, - [281] = 281, - [282] = 275, - [283] = 281, - [284] = 284, - [285] = 273, - [286] = 274, - [287] = 281, - [288] = 278, - [289] = 278, - [290] = 279, - [291] = 275, - [292] = 281, - [293] = 279, - [294] = 273, - [295] = 284, - [296] = 284, - [297] = 273, - [298] = 278, - [299] = 279, - [300] = 278, - [301] = 279, + [276] = 276, + [277] = 267, + [278] = 274, + [279] = 275, + [280] = 268, + [281] = 269, + [282] = 272, + [283] = 274, + [284] = 275, + [285] = 276, + [286] = 267, + [287] = 268, + [288] = 269, + [289] = 272, + [290] = 276, + [291] = 272, + [292] = 276, + [293] = 274, + [294] = 275, + [295] = 276, + [296] = 267, + [297] = 267, + [298] = 268, + [299] = 269, + [300] = 272, + [301] = 274, [302] = 275, - [303] = 281, - [304] = 281, - [305] = 284, - [306] = 273, - [307] = 284, - [308] = 273, - [309] = 274, - [310] = 284, - [311] = 278, - [312] = 279, - [313] = 275, - [314] = 281, - [315] = 273, - [316] = 274, - [317] = 274, - [318] = 278, - [319] = 279, - [320] = 284, - [321] = 278, - [322] = 279, - [323] = 275, - [324] = 281, - [325] = 284, - [326] = 275, + [303] = 276, + [304] = 274, + [305] = 275, + [306] = 268, + [307] = 269, + [308] = 274, + [309] = 275, + [310] = 276, + [311] = 267, + [312] = 268, + [313] = 269, + [314] = 274, + [315] = 275, + [316] = 276, + [317] = 267, + [318] = 268, + [319] = 269, + [320] = 267, + [321] = 170, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 322, [327] = 327, - [328] = 327, + [328] = 328, [329] = 329, - [330] = 330, - [331] = 331, - [332] = 330, + [330] = 325, + [331] = 329, + [332] = 324, [333] = 333, - [334] = 334, - [335] = 335, - [336] = 330, + [334] = 323, + [335] = 324, + [336] = 323, [337] = 337, - [338] = 331, - [339] = 327, - [340] = 340, - [341] = 337, - [342] = 337, - [343] = 331, - [344] = 329, - [345] = 334, - [346] = 329, - [347] = 180, - [348] = 334, - [349] = 349, - [350] = 245, - [351] = 351, + [338] = 328, + [339] = 329, + [340] = 328, + [341] = 325, + [342] = 322, + [343] = 343, + [344] = 344, + [345] = 344, + [346] = 344, + [347] = 347, + [348] = 344, + [349] = 343, + [350] = 343, + [351] = 344, [352] = 352, - [353] = 351, - [354] = 351, - [355] = 352, - [356] = 352, - [357] = 351, - [358] = 352, - [359] = 351, - [360] = 351, - [361] = 352, - [362] = 362, - [363] = 245, - [364] = 349, - [365] = 351, - [366] = 352, - [367] = 245, - [368] = 352, - [369] = 351, - [370] = 352, - [371] = 349, - [372] = 156, - [373] = 373, - [374] = 374, - [375] = 373, - [376] = 376, - [377] = 377, - [378] = 373, - [379] = 377, - [380] = 333, - [381] = 373, - [382] = 374, - [383] = 377, - [384] = 374, - [385] = 377, - [386] = 373, - [387] = 377, - [388] = 374, - [389] = 374, - [390] = 377, - [391] = 373, - [392] = 373, - [393] = 374, - [394] = 377, - [395] = 373, - [396] = 373, - [397] = 340, - [398] = 374, - [399] = 399, - [400] = 374, - [401] = 374, - [402] = 402, + [353] = 344, + [354] = 347, + [355] = 343, + [356] = 344, + [357] = 343, + [358] = 256, + [359] = 343, + [360] = 347, + [361] = 344, + [362] = 343, + [363] = 256, + [364] = 343, + [365] = 256, + [366] = 366, + [367] = 366, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 368, + [372] = 368, + [373] = 368, + [374] = 368, + [375] = 375, + [376] = 337, + [377] = 368, + [378] = 368, + [379] = 375, + [380] = 375, + [381] = 366, + [382] = 366, + [383] = 150, + [384] = 368, + [385] = 375, + [386] = 366, + [387] = 375, + [388] = 368, + [389] = 375, + [390] = 366, + [391] = 366, + [392] = 375, + [393] = 393, + [394] = 366, + [395] = 395, + [396] = 368, + [397] = 375, + [398] = 375, + [399] = 366, + [400] = 366, + [401] = 375, + [402] = 333, [403] = 403, - [404] = 377, - [405] = 373, - [406] = 374, + [404] = 404, + [405] = 170, + [406] = 406, [407] = 407, - [408] = 377, - [409] = 377, - [410] = 410, - [411] = 411, - [412] = 412, - [413] = 333, - [414] = 414, - [415] = 340, - [416] = 156, - [417] = 180, - [418] = 333, - [419] = 340, + [408] = 333, + [409] = 409, + [410] = 337, + [411] = 150, + [412] = 170, + [413] = 413, + [414] = 333, + [415] = 337, + [416] = 170, + [417] = 417, + [418] = 418, + [419] = 419, [420] = 420, - [421] = 421, + [421] = 420, [422] = 422, - [423] = 410, + [423] = 423, [424] = 424, - [425] = 414, + [425] = 425, [426] = 426, [427] = 427, - [428] = 424, - [429] = 429, + [428] = 403, + [429] = 422, [430] = 430, - [431] = 431, - [432] = 432, - [433] = 430, - [434] = 434, + [431] = 420, + [432] = 422, + [433] = 424, + [434] = 427, [435] = 435, - [436] = 407, - [437] = 434, - [438] = 414, - [439] = 180, - [440] = 440, + [436] = 436, + [437] = 424, + [438] = 438, + [439] = 439, + [440] = 427, [441] = 441, - [442] = 424, - [443] = 430, - [444] = 441, - [445] = 435, - [446] = 446, - [447] = 447, - [448] = 435, - [449] = 180, - [450] = 450, - [451] = 451, - [452] = 421, - [453] = 421, - [454] = 421, - [455] = 421, - [456] = 421, - [457] = 421, - [458] = 421, - [459] = 421, - [460] = 421, - [461] = 441, - [462] = 462, - [463] = 463, - [464] = 333, - [465] = 340, - [466] = 466, + [442] = 442, + [443] = 404, + [444] = 430, + [445] = 430, + [446] = 430, + [447] = 430, + [448] = 430, + [449] = 430, + [450] = 430, + [451] = 430, + [452] = 430, + [453] = 441, + [454] = 413, + [455] = 404, + [456] = 456, + [457] = 457, + [458] = 333, + [459] = 337, + [460] = 460, + [461] = 461, + [462] = 461, + [463] = 456, + [464] = 464, + [465] = 460, + [466] = 457, [467] = 467, - [468] = 466, - [469] = 469, + [468] = 468, + [469] = 464, [470] = 470, - [471] = 471, + [471] = 467, [472] = 472, - [473] = 467, - [474] = 463, + [473] = 472, + [474] = 468, [475] = 475, - [476] = 471, - [477] = 462, - [478] = 469, - [479] = 475, - [480] = 470, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, [481] = 481, [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 486, - [491] = 482, - [492] = 483, - [493] = 485, - [494] = 487, - [495] = 495, - [496] = 488, - [497] = 489, - [498] = 486, - [499] = 482, - [500] = 483, - [501] = 485, - [502] = 487, - [503] = 503, - [504] = 488, - [505] = 489, - [506] = 486, - [507] = 482, - [508] = 483, - [509] = 485, - [510] = 487, - [511] = 482, - [512] = 512, + [483] = 476, + [484] = 477, + [485] = 478, + [486] = 479, + [487] = 480, + [488] = 481, + [489] = 482, + [490] = 476, + [491] = 477, + [492] = 492, + [493] = 492, + [494] = 494, + [495] = 477, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 496, + [501] = 501, + [502] = 502, + [503] = 475, + [504] = 476, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 477, + [510] = 478, + [511] = 511, + [512] = 478, [513] = 513, [514] = 514, [515] = 515, - [516] = 481, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 483, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 513, - [526] = 515, - [527] = 527, - [528] = 528, - [529] = 483, - [530] = 530, - [531] = 485, - [532] = 486, - [533] = 487, - [534] = 534, - [535] = 488, - [536] = 489, - [537] = 537, - [538] = 538, + [516] = 514, + [517] = 515, + [518] = 479, + [519] = 479, + [520] = 480, + [521] = 478, + [522] = 479, + [523] = 480, + [524] = 513, + [525] = 525, + [526] = 481, + [527] = 480, + [528] = 481, + [529] = 482, + [530] = 482, + [531] = 475, + [532] = 511, + [533] = 533, + [534] = 492, + [535] = 494, + [536] = 477, + [537] = 476, + [538] = 533, [539] = 539, - [540] = 486, - [541] = 541, + [540] = 540, + [541] = 481, [542] = 542, - [543] = 523, - [544] = 512, - [545] = 513, - [546] = 482, - [547] = 517, - [548] = 519, - [549] = 485, - [550] = 483, - [551] = 551, - [552] = 486, - [553] = 482, - [554] = 485, - [555] = 542, - [556] = 523, - [557] = 512, - [558] = 513, - [559] = 559, - [560] = 519, - [561] = 519, + [543] = 478, + [544] = 544, + [545] = 511, + [546] = 533, + [547] = 505, + [548] = 494, + [549] = 475, + [550] = 476, + [551] = 511, + [552] = 477, + [553] = 492, + [554] = 494, + [555] = 492, + [556] = 494, + [557] = 557, + [558] = 482, + [559] = 533, + [560] = 533, + [561] = 561, [562] = 562, - [563] = 512, - [564] = 512, - [565] = 513, + [563] = 492, + [564] = 479, + [565] = 476, [566] = 566, - [567] = 514, - [568] = 512, - [569] = 513, - [570] = 487, - [571] = 571, - [572] = 572, + [567] = 494, + [568] = 492, + [569] = 480, + [570] = 570, + [571] = 481, + [572] = 477, [573] = 573, - [574] = 488, - [575] = 542, - [576] = 489, - [577] = 486, - [578] = 482, - [579] = 483, - [580] = 512, - [581] = 488, - [582] = 487, - [583] = 523, - [584] = 542, - [585] = 512, - [586] = 485, - [587] = 489, - [588] = 572, - [589] = 573, - [590] = 487, - [591] = 551, - [592] = 488, - [593] = 551, - [594] = 594, - [595] = 551, - [596] = 551, - [597] = 551, - [598] = 489, - [599] = 551, - [600] = 551, - [601] = 488, - [602] = 559, - [603] = 518, - [604] = 489, - [605] = 571, - [606] = 594, - [607] = 495, - [608] = 503, - [609] = 527, - [610] = 523, - [611] = 611, + [574] = 525, + [575] = 478, + [576] = 478, + [577] = 479, + [578] = 525, + [579] = 479, + [580] = 580, + [581] = 525, + [582] = 480, + [583] = 525, + [584] = 480, + [585] = 525, + [586] = 481, + [587] = 525, + [588] = 482, + [589] = 525, + [590] = 482, + [591] = 591, + [592] = 476, + [593] = 573, + [594] = 561, + [595] = 499, + [596] = 502, + [597] = 481, + [598] = 482, + [599] = 591, + [600] = 507, + [601] = 601, + [602] = 501, + [603] = 539, + [604] = 492, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 607, + [611] = 606, [612] = 612, [613] = 613, [614] = 614, - [615] = 615, - [616] = 616, - [617] = 612, - [618] = 615, - [619] = 619, + [615] = 608, + [616] = 612, + [617] = 613, + [618] = 618, + [619] = 614, [620] = 620, - [621] = 621, - [622] = 619, - [623] = 620, - [624] = 621, - [625] = 614, + [621] = 609, + [622] = 620, + [623] = 623, + [624] = 624, + [625] = 625, [626] = 626, - [627] = 626, - [628] = 613, + [627] = 627, + [628] = 628, [629] = 629, - [630] = 630, + [630] = 624, [631] = 631, [632] = 632, - [633] = 630, + [633] = 633, [634] = 634, [635] = 635, [636] = 636, - [637] = 637, + [637] = 631, [638] = 629, - [639] = 639, + [639] = 628, [640] = 640, [641] = 641, [642] = 642, [643] = 643, - [644] = 644, - [645] = 640, - [646] = 641, - [647] = 644, - [648] = 648, + [644] = 642, + [645] = 645, + [646] = 632, + [647] = 625, + [648] = 623, [649] = 649, [650] = 650, [651] = 651, - [652] = 224, - [653] = 653, - [654] = 654, - [655] = 653, + [652] = 635, + [653] = 645, + [654] = 629, + [655] = 625, [656] = 656, - [657] = 656, - [658] = 656, - [659] = 659, + [657] = 657, + [658] = 658, + [659] = 628, [660] = 660, - [661] = 661, - [662] = 650, - [663] = 654, - [664] = 654, + [661] = 642, + [662] = 662, + [663] = 663, + [664] = 623, [665] = 665, - [666] = 653, - [667] = 659, - [668] = 659, - [669] = 661, - [670] = 654, + [666] = 660, + [667] = 656, + [668] = 218, + [669] = 669, + [670] = 670, [671] = 671, - [672] = 653, - [673] = 673, - [674] = 659, - [675] = 675, - [676] = 676, - [677] = 650, - [678] = 675, - [679] = 679, - [680] = 660, - [681] = 679, - [682] = 650, - [683] = 650, - [684] = 651, - [685] = 223, - [686] = 676, - [687] = 673, - [688] = 653, - [689] = 659, - [690] = 665, - [691] = 659, - [692] = 656, - [693] = 656, - [694] = 654, - [695] = 654, - [696] = 653, - [697] = 656, - [698] = 671, + [672] = 625, + [673] = 217, + [674] = 669, + [675] = 670, + [676] = 657, + [677] = 658, + [678] = 623, + [679] = 629, + [680] = 665, + [681] = 671, + [682] = 662, + [683] = 663, + [684] = 628, + [685] = 642, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 689, + [691] = 691, + [692] = 692, + [693] = 688, + [694] = 692, + [695] = 687, + [696] = 696, + [697] = 697, + [698] = 698, [699] = 699, - [700] = 650, + [700] = 696, [701] = 699, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 703, - [706] = 706, - [707] = 704, + [702] = 686, + [703] = 691, + [704] = 698, + [705] = 705, + [706] = 697, + [707] = 705, [708] = 708, [709] = 709, - [710] = 710, + [710] = 708, [711] = 709, - [712] = 708, - [713] = 713, - [714] = 706, + [712] = 712, + [713] = 712, + [714] = 714, [715] = 715, - [716] = 702, - [717] = 713, - [718] = 715, + [716] = 716, + [717] = 717, + [718] = 718, [719] = 719, [720] = 720, - [721] = 720, - [722] = 719, - [723] = 710, + [721] = 721, + [722] = 722, + [723] = 723, [724] = 724, - [725] = 724, + [725] = 725, [726] = 726, [727] = 727, - [728] = 727, - [729] = 726, + [728] = 717, + [729] = 729, [730] = 730, [731] = 731, [732] = 732, @@ -3518,2080 +3522,2129 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [735] = 735, [736] = 736, [737] = 737, - [738] = 735, + [738] = 738, [739] = 739, [740] = 740, [741] = 741, [742] = 742, [743] = 743, [744] = 744, - [745] = 740, - [746] = 743, + [745] = 745, + [746] = 746, [747] = 747, [748] = 748, [749] = 749, [750] = 750, - [751] = 744, + [751] = 751, [752] = 752, - [753] = 753, + [753] = 718, [754] = 754, [755] = 755, [756] = 756, - [757] = 757, - [758] = 747, - [759] = 748, - [760] = 749, - [761] = 750, + [757] = 730, + [758] = 731, + [759] = 735, + [760] = 736, + [761] = 739, [762] = 762, - [763] = 763, - [764] = 752, + [763] = 746, + [764] = 715, [765] = 765, - [766] = 731, - [767] = 767, + [766] = 766, + [767] = 747, [768] = 768, - [769] = 769, - [770] = 770, + [769] = 720, + [770] = 752, [771] = 771, - [772] = 772, - [773] = 773, - [774] = 732, - [775] = 733, - [776] = 776, + [772] = 756, + [773] = 765, + [774] = 734, + [775] = 775, + [776] = 749, [777] = 777, - [778] = 778, + [778] = 738, [779] = 779, [780] = 780, [781] = 781, - [782] = 765, + [782] = 782, [783] = 783, [784] = 784, - [785] = 785, - [786] = 767, + [785] = 762, + [786] = 784, [787] = 787, - [788] = 788, - [789] = 768, - [790] = 770, - [791] = 791, + [788] = 771, + [789] = 218, + [790] = 719, + [791] = 742, [792] = 792, - [793] = 793, - [794] = 794, - [795] = 742, - [796] = 796, - [797] = 772, - [798] = 773, + [793] = 723, + [794] = 716, + [795] = 779, + [796] = 721, + [797] = 722, + [798] = 780, [799] = 799, - [800] = 800, - [801] = 801, - [802] = 780, - [803] = 803, - [804] = 804, - [805] = 777, - [806] = 778, - [807] = 807, - [808] = 223, - [809] = 756, - [810] = 769, - [811] = 776, - [812] = 730, - [813] = 803, - [814] = 792, - [815] = 800, - [816] = 807, - [817] = 753, - [818] = 781, - [819] = 793, - [820] = 784, - [821] = 791, - [822] = 794, - [823] = 823, - [824] = 824, - [825] = 736, - [826] = 734, - [827] = 762, - [828] = 828, - [829] = 801, - [830] = 779, - [831] = 824, - [832] = 737, - [833] = 763, - [834] = 785, - [835] = 788, - [836] = 741, - [837] = 804, - [838] = 739, - [839] = 823, - [840] = 840, - [841] = 840, - [842] = 771, - [843] = 754, - [844] = 783, - [845] = 757, - [846] = 755, - [847] = 787, - [848] = 796, - [849] = 799, - [850] = 840, - [851] = 771, - [852] = 828, - [853] = 224, - [854] = 854, - [855] = 854, - [856] = 854, - [857] = 854, - [858] = 854, - [859] = 854, + [800] = 725, + [801] = 737, + [802] = 726, + [803] = 782, + [804] = 743, + [805] = 744, + [806] = 745, + [807] = 775, + [808] = 729, + [809] = 732, + [810] = 733, + [811] = 787, + [812] = 783, + [813] = 813, + [814] = 766, + [815] = 217, + [816] = 748, + [817] = 817, + [818] = 818, + [819] = 818, + [820] = 740, + [821] = 750, + [822] = 754, + [823] = 724, + [824] = 813, + [825] = 792, + [826] = 714, + [827] = 727, + [828] = 781, + [829] = 741, + [830] = 777, + [831] = 751, + [832] = 777, + [833] = 751, + [834] = 755, + [835] = 768, + [836] = 817, + [837] = 799, + [838] = 838, + [839] = 838, + [840] = 838, + [841] = 838, + [842] = 838, + [843] = 838, + [844] = 844, + [845] = 844, + [846] = 846, + [847] = 846, + [848] = 846, + [849] = 846, + [850] = 846, + [851] = 846, + [852] = 846, + [853] = 853, + [854] = 846, + [855] = 855, + [856] = 856, + [857] = 856, + [858] = 858, + [859] = 858, [860] = 860, - [861] = 860, + [861] = 861, [862] = 862, - [863] = 862, + [863] = 863, [864] = 862, - [865] = 862, - [866] = 862, - [867] = 862, - [868] = 862, - [869] = 862, + [865] = 863, + [866] = 860, + [867] = 867, + [868] = 861, + [869] = 869, [870] = 870, - [871] = 871, - [872] = 872, - [873] = 873, + [871] = 870, + [872] = 870, + [873] = 855, [874] = 874, - [875] = 875, - [876] = 876, - [877] = 877, - [878] = 872, + [875] = 860, + [876] = 861, + [877] = 867, + [878] = 869, [879] = 879, - [880] = 873, - [881] = 881, - [882] = 874, - [883] = 879, - [884] = 872, - [885] = 879, - [886] = 873, - [887] = 873, - [888] = 881, - [889] = 889, - [890] = 890, - [891] = 881, - [892] = 871, - [893] = 875, - [894] = 874, - [895] = 875, - [896] = 890, - [897] = 876, - [898] = 871, - [899] = 890, - [900] = 879, - [901] = 877, - [902] = 872, - [903] = 871, - [904] = 876, - [905] = 877, - [906] = 874, - [907] = 872, - [908] = 879, - [909] = 873, - [910] = 890, - [911] = 875, - [912] = 890, - [913] = 890, - [914] = 914, - [915] = 890, - [916] = 873, - [917] = 871, - [918] = 875, - [919] = 879, - [920] = 881, - [921] = 872, - [922] = 879, - [923] = 881, - [924] = 877, - [925] = 889, - [926] = 914, - [927] = 870, - [928] = 870, - [929] = 881, - [930] = 890, - [931] = 871, - [932] = 876, - [933] = 871, - [934] = 872, - [935] = 873, - [936] = 881, - [937] = 874, - [938] = 890, - [939] = 875, - [940] = 871, - [941] = 874, - [942] = 875, - [943] = 874, - [944] = 875, - [945] = 876, - [946] = 877, - [947] = 914, - [948] = 872, - [949] = 879, - [950] = 914, - [951] = 873, - [952] = 914, - [953] = 881, - [954] = 876, - [955] = 877, - [956] = 877, - [957] = 876, - [958] = 890, - [959] = 890, - [960] = 890, - [961] = 877, - [962] = 890, - [963] = 874, - [964] = 870, - [965] = 876, + [880] = 853, + [881] = 870, + [882] = 869, + [883] = 860, + [884] = 861, + [885] = 874, + [886] = 860, + [887] = 861, + [888] = 853, + [889] = 874, + [890] = 856, + [891] = 874, + [892] = 856, + [893] = 858, + [894] = 860, + [895] = 862, + [896] = 861, + [897] = 860, + [898] = 861, + [899] = 863, + [900] = 867, + [901] = 855, + [902] = 869, + [903] = 870, + [904] = 856, + [905] = 870, + [906] = 860, + [907] = 855, + [908] = 858, + [909] = 858, + [910] = 860, + [911] = 862, + [912] = 856, + [913] = 862, + [914] = 858, + [915] = 863, + [916] = 863, + [917] = 867, + [918] = 867, + [919] = 853, + [920] = 869, + [921] = 879, + [922] = 874, + [923] = 862, + [924] = 856, + [925] = 870, + [926] = 863, + [927] = 858, + [928] = 862, + [929] = 860, + [930] = 861, + [931] = 874, + [932] = 856, + [933] = 858, + [934] = 862, + [935] = 867, + [936] = 863, + [937] = 867, + [938] = 869, + [939] = 870, + [940] = 874, + [941] = 860, + [942] = 860, + [943] = 860, + [944] = 869, + [945] = 863, + [946] = 867, + [947] = 855, + [948] = 869, + [949] = 874, + [950] = 950, + [951] = 853, + [952] = 853, + [953] = 953, + [954] = 954, + [955] = 853, + [956] = 853, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 953, + [962] = 950, + [963] = 953, + [964] = 964, + [965] = 965, [966] = 966, - [967] = 870, - [968] = 870, - [969] = 969, - [970] = 970, - [971] = 870, - [972] = 870, - [973] = 973, - [974] = 974, + [967] = 950, + [968] = 968, + [969] = 950, + [970] = 953, + [971] = 954, + [972] = 853, + [973] = 954, + [974] = 954, [975] = 975, [976] = 976, - [977] = 969, - [978] = 970, - [979] = 966, - [980] = 969, - [981] = 970, - [982] = 966, - [983] = 969, - [984] = 970, - [985] = 966, - [986] = 986, - [987] = 987, - [988] = 988, - [989] = 989, + [977] = 953, + [978] = 626, + [979] = 633, + [980] = 634, + [981] = 636, + [982] = 640, + [983] = 641, + [984] = 853, + [985] = 953, + [986] = 950, + [987] = 954, + [988] = 853, + [989] = 954, [990] = 990, - [991] = 991, - [992] = 870, - [993] = 973, - [994] = 970, - [995] = 966, - [996] = 996, - [997] = 997, - [998] = 975, - [999] = 976, - [1000] = 1000, - [1001] = 1001, - [1002] = 986, - [1003] = 987, - [1004] = 988, - [1005] = 973, - [1006] = 989, - [1007] = 990, - [1008] = 991, - [1009] = 974, - [1010] = 975, - [1011] = 976, - [1012] = 1012, - [1013] = 975, + [991] = 954, + [992] = 960, + [993] = 965, + [994] = 950, + [995] = 957, + [996] = 958, + [997] = 968, + [998] = 976, + [999] = 959, + [1000] = 966, + [1001] = 975, + [1002] = 964, + [1003] = 953, + [1004] = 1004, + [1005] = 1005, + [1006] = 960, + [1007] = 965, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 957, + [1012] = 958, + [1013] = 968, [1014] = 976, - [1015] = 1015, - [1016] = 648, - [1017] = 974, - [1018] = 987, - [1019] = 988, - [1020] = 966, - [1021] = 989, - [1022] = 990, - [1023] = 991, - [1024] = 974, - [1025] = 969, - [1026] = 1026, - [1027] = 642, - [1028] = 649, - [1029] = 634, - [1030] = 636, - [1031] = 635, - [1032] = 637, - [1033] = 870, - [1034] = 969, - [1035] = 970, - [1036] = 966, - [1037] = 870, - [1038] = 986, - [1039] = 987, - [1040] = 988, - [1041] = 973, - [1042] = 989, - [1043] = 990, - [1044] = 969, - [1045] = 991, - [1046] = 970, - [1047] = 870, - [1048] = 986, + [1015] = 959, + [1016] = 966, + [1017] = 975, + [1018] = 964, + [1019] = 960, + [1020] = 965, + [1021] = 853, + [1022] = 1022, + [1023] = 950, + [1024] = 643, + [1025] = 957, + [1026] = 958, + [1027] = 968, + [1028] = 976, + [1029] = 959, + [1030] = 966, + [1031] = 975, + [1032] = 964, + [1033] = 1033, + [1034] = 1034, + [1035] = 640, + [1036] = 641, + [1037] = 1037, + [1038] = 957, + [1039] = 958, + [1040] = 618, + [1041] = 1041, + [1042] = 965, + [1043] = 1043, + [1044] = 651, + [1045] = 1004, + [1046] = 1005, + [1047] = 968, + [1048] = 976, [1049] = 1049, [1050] = 1050, - [1051] = 1026, - [1052] = 975, - [1053] = 976, - [1054] = 1015, - [1055] = 989, + [1051] = 643, + [1052] = 1052, + [1053] = 1004, + [1054] = 1054, + [1055] = 1055, [1056] = 1056, [1057] = 1057, [1058] = 1058, - [1059] = 648, - [1060] = 986, - [1061] = 987, - [1062] = 988, - [1063] = 973, - [1064] = 989, - [1065] = 1001, - [1066] = 1000, - [1067] = 1012, - [1068] = 1026, - [1069] = 990, - [1070] = 991, - [1071] = 988, - [1072] = 974, - [1073] = 1073, - [1074] = 1015, - [1075] = 642, - [1076] = 649, - [1077] = 634, - [1078] = 636, - [1079] = 635, - [1080] = 637, - [1081] = 1081, - [1082] = 616, - [1083] = 1083, - [1084] = 1084, - [1085] = 639, - [1086] = 996, - [1087] = 997, - [1088] = 990, + [1059] = 957, + [1060] = 958, + [1061] = 968, + [1062] = 976, + [1063] = 1010, + [1064] = 1008, + [1065] = 959, + [1066] = 957, + [1067] = 1005, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 1010, + [1072] = 958, + [1073] = 609, + [1074] = 607, + [1075] = 968, + [1076] = 1076, + [1077] = 976, + [1078] = 649, + [1079] = 959, + [1080] = 650, + [1081] = 966, + [1082] = 1082, + [1083] = 975, + [1084] = 634, + [1085] = 636, + [1086] = 1022, + [1087] = 990, + [1088] = 1009, [1089] = 1089, - [1090] = 991, - [1091] = 1091, + [1090] = 1090, + [1091] = 1008, [1092] = 1092, [1093] = 1093, - [1094] = 1001, + [1094] = 960, [1095] = 1095, - [1096] = 975, - [1097] = 976, - [1098] = 1098, - [1099] = 1015, - [1100] = 986, - [1101] = 973, - [1102] = 988, - [1103] = 973, - [1104] = 989, - [1105] = 990, - [1106] = 991, - [1107] = 974, - [1108] = 1108, - [1109] = 1109, - [1110] = 969, - [1111] = 1000, - [1112] = 1012, - [1113] = 1026, - [1114] = 1114, - [1115] = 1115, - [1116] = 970, - [1117] = 966, - [1118] = 1118, - [1119] = 1119, - [1120] = 1120, + [1096] = 966, + [1097] = 960, + [1098] = 953, + [1099] = 1099, + [1100] = 1022, + [1101] = 990, + [1102] = 1009, + [1103] = 1103, + [1104] = 1104, + [1105] = 965, + [1106] = 1106, + [1107] = 1010, + [1108] = 1022, + [1109] = 990, + [1110] = 1009, + [1111] = 975, + [1112] = 1112, + [1113] = 964, + [1114] = 965, + [1115] = 959, + [1116] = 960, + [1117] = 1117, + [1118] = 966, + [1119] = 1057, + [1120] = 1058, [1121] = 1121, - [1122] = 1122, + [1122] = 1008, [1123] = 1123, - [1124] = 1124, - [1125] = 974, - [1126] = 1126, - [1127] = 986, - [1128] = 1128, - [1129] = 612, - [1130] = 621, - [1131] = 631, - [1132] = 1001, - [1133] = 987, - [1134] = 1134, - [1135] = 1135, - [1136] = 996, - [1137] = 997, - [1138] = 975, - [1139] = 976, - [1140] = 632, - [1141] = 1056, - [1142] = 1057, - [1143] = 1143, - [1144] = 1000, - [1145] = 1145, - [1146] = 1012, - [1147] = 1147, - [1148] = 987, - [1149] = 621, - [1150] = 1114, - [1151] = 1115, - [1152] = 1081, - [1153] = 640, - [1154] = 641, - [1155] = 644, - [1156] = 631, - [1157] = 632, - [1158] = 639, - [1159] = 1000, - [1160] = 1012, - [1161] = 1026, - [1162] = 630, - [1163] = 1073, - [1164] = 1083, - [1165] = 1143, - [1166] = 1089, - [1167] = 1145, - [1168] = 1056, - [1169] = 1057, - [1170] = 1058, - [1171] = 1084, - [1172] = 1049, - [1173] = 1095, - [1174] = 1118, - [1175] = 1119, - [1176] = 1120, - [1177] = 648, - [1178] = 1121, - [1179] = 642, - [1180] = 1147, - [1181] = 1091, - [1182] = 1093, - [1183] = 1098, - [1184] = 1108, - [1185] = 1109, - [1186] = 1126, - [1187] = 642, - [1188] = 1092, - [1189] = 1134, - [1190] = 1050, - [1191] = 649, - [1192] = 634, - [1193] = 636, - [1194] = 1114, - [1195] = 1115, - [1196] = 635, - [1197] = 637, - [1198] = 1081, - [1199] = 639, - [1200] = 1135, - [1201] = 616, - [1202] = 1073, - [1203] = 1083, - [1204] = 1089, - [1205] = 1084, - [1206] = 1049, - [1207] = 1095, - [1208] = 1143, - [1209] = 1145, - [1210] = 1118, - [1211] = 1119, - [1212] = 1120, - [1213] = 1121, - [1214] = 1001, - [1215] = 649, - [1216] = 1147, - [1217] = 1091, - [1218] = 1093, - [1219] = 1098, - [1220] = 1108, - [1221] = 1109, - [1222] = 1126, - [1223] = 1092, - [1224] = 1134, - [1225] = 1050, - [1226] = 1081, - [1227] = 1114, - [1228] = 1115, - [1229] = 1135, - [1230] = 634, - [1231] = 636, - [1232] = 1000, - [1233] = 1050, - [1234] = 1012, - [1235] = 1026, - [1236] = 1073, - [1237] = 1083, - [1238] = 996, - [1239] = 642, - [1240] = 649, - [1241] = 634, - [1242] = 636, - [1243] = 635, - [1244] = 637, - [1245] = 1089, - [1246] = 997, - [1247] = 1001, - [1248] = 639, - [1249] = 1135, - [1250] = 1084, - [1251] = 975, - [1252] = 976, - [1253] = 1015, - [1254] = 1143, - [1255] = 1145, - [1256] = 986, - [1257] = 987, - [1258] = 988, - [1259] = 973, - [1260] = 989, - [1261] = 990, - [1262] = 991, - [1263] = 974, - [1264] = 631, - [1265] = 632, - [1266] = 631, - [1267] = 632, - [1268] = 639, - [1269] = 639, - [1270] = 1049, - [1271] = 1095, - [1272] = 1118, - [1273] = 1119, - [1274] = 1120, - [1275] = 1121, - [1276] = 635, - [1277] = 616, - [1278] = 612, - [1279] = 621, - [1280] = 1001, - [1281] = 612, - [1282] = 637, - [1283] = 1000, - [1284] = 1012, - [1285] = 1026, - [1286] = 1015, - [1287] = 1147, - [1288] = 1091, - [1289] = 1015, - [1290] = 1093, - [1291] = 1098, - [1292] = 1058, - [1293] = 1134, - [1294] = 1108, - [1295] = 1109, - [1296] = 1126, - [1297] = 996, - [1298] = 997, - [1299] = 1092, - [1300] = 648, - [1301] = 648, - [1302] = 1049, - [1303] = 644, - [1304] = 631, - [1305] = 632, - [1306] = 1000, - [1307] = 1012, - [1308] = 1026, - [1309] = 1073, - [1310] = 1083, - [1311] = 1081, - [1312] = 1089, - [1313] = 1143, - [1314] = 1145, - [1315] = 1084, - [1316] = 1135, - [1317] = 1049, - [1318] = 1095, - [1319] = 1118, - [1320] = 1119, - [1321] = 1120, - [1322] = 631, - [1323] = 1121, - [1324] = 632, - [1325] = 1135, - [1326] = 630, + [1124] = 975, + [1125] = 964, + [1126] = 950, + [1127] = 954, + [1128] = 626, + [1129] = 1129, + [1130] = 1130, + [1131] = 633, + [1132] = 964, + [1133] = 1099, + [1134] = 649, + [1135] = 650, + [1136] = 1129, + [1137] = 1093, + [1138] = 649, + [1139] = 650, + [1140] = 651, + [1141] = 651, + [1142] = 1082, + [1143] = 1033, + [1144] = 1130, + [1145] = 1070, + [1146] = 640, + [1147] = 641, + [1148] = 1052, + [1149] = 1010, + [1150] = 609, + [1151] = 1022, + [1152] = 990, + [1153] = 1009, + [1154] = 607, + [1155] = 643, + [1156] = 1103, + [1157] = 1034, + [1158] = 1043, + [1159] = 618, + [1160] = 1037, + [1161] = 1022, + [1162] = 990, + [1163] = 1009, + [1164] = 626, + [1165] = 1041, + [1166] = 1076, + [1167] = 1092, + [1168] = 1095, + [1169] = 1112, + [1170] = 1005, + [1171] = 1123, + [1172] = 1050, + [1173] = 1008, + [1174] = 1068, + [1175] = 626, + [1176] = 1121, + [1177] = 1093, + [1178] = 1090, + [1179] = 1099, + [1180] = 1129, + [1181] = 1130, + [1182] = 1037, + [1183] = 1041, + [1184] = 1054, + [1185] = 1055, + [1186] = 1056, + [1187] = 1082, + [1188] = 1033, + [1189] = 633, + [1190] = 1052, + [1191] = 632, + [1192] = 618, + [1193] = 635, + [1194] = 634, + [1195] = 636, + [1196] = 645, + [1197] = 649, + [1198] = 650, + [1199] = 651, + [1200] = 1010, + [1201] = 1022, + [1202] = 990, + [1203] = 1009, + [1204] = 640, + [1205] = 641, + [1206] = 624, + [1207] = 1103, + [1208] = 1034, + [1209] = 1010, + [1210] = 1043, + [1211] = 651, + [1212] = 1049, + [1213] = 1049, + [1214] = 1069, + [1215] = 1057, + [1216] = 1058, + [1217] = 964, + [1218] = 1121, + [1219] = 1005, + [1220] = 1076, + [1221] = 960, + [1222] = 1092, + [1223] = 1095, + [1224] = 965, + [1225] = 1112, + [1226] = 1123, + [1227] = 1050, + [1228] = 643, + [1229] = 1068, + [1230] = 1054, + [1231] = 1055, + [1232] = 1093, + [1233] = 1090, + [1234] = 1099, + [1235] = 1129, + [1236] = 1130, + [1237] = 1037, + [1238] = 1041, + [1239] = 626, + [1240] = 1054, + [1241] = 1055, + [1242] = 1056, + [1243] = 633, + [1244] = 634, + [1245] = 636, + [1246] = 609, + [1247] = 1082, + [1248] = 1033, + [1249] = 640, + [1250] = 641, + [1251] = 1052, + [1252] = 607, + [1253] = 651, + [1254] = 1049, + [1255] = 1056, + [1256] = 1008, + [1257] = 633, + [1258] = 1103, + [1259] = 1034, + [1260] = 1004, + [1261] = 1043, + [1262] = 634, + [1263] = 1069, + [1264] = 1070, + [1265] = 636, + [1266] = 1090, + [1267] = 1008, + [1268] = 957, + [1269] = 1076, + [1270] = 643, + [1271] = 958, + [1272] = 1092, + [1273] = 1095, + [1274] = 1069, + [1275] = 1070, + [1276] = 1112, + [1277] = 1123, + [1278] = 1050, + [1279] = 968, + [1280] = 976, + [1281] = 1068, + [1282] = 959, + [1283] = 966, + [1284] = 975, + [1285] = 1004, + [1286] = 1076, + [1287] = 1033, + [1288] = 1090, + [1289] = 1099, + [1290] = 1009, + [1291] = 1129, + [1292] = 1130, + [1293] = 651, + [1294] = 634, + [1295] = 1037, + [1296] = 651, + [1297] = 1041, + [1298] = 1008, + [1299] = 1103, + [1300] = 1049, + [1301] = 1034, + [1302] = 1082, + [1303] = 1076, + [1304] = 1033, + [1305] = 627, + [1306] = 649, + [1307] = 1076, + [1308] = 1052, + [1309] = 1103, + [1310] = 1069, + [1311] = 1104, + [1312] = 1034, + [1313] = 1070, + [1314] = 632, + [1315] = 627, + [1316] = 1069, + [1317] = 1070, + [1318] = 1043, + [1319] = 650, + [1320] = 636, + [1321] = 1106, + [1322] = 632, + [1323] = 1092, + [1324] = 1043, + [1325] = 1095, + [1326] = 1069, [1327] = 635, - [1328] = 1147, - [1329] = 1147, - [1330] = 1091, + [1328] = 1070, + [1329] = 1022, + [1330] = 1093, [1331] = 1093, - [1332] = 1098, - [1333] = 1108, - [1334] = 1109, - [1335] = 1126, - [1336] = 1091, - [1337] = 1092, - [1338] = 1134, + [1332] = 1112, + [1333] = 1123, + [1334] = 1090, + [1335] = 1099, + [1336] = 1129, + [1337] = 1130, + [1338] = 1090, [1339] = 1050, - [1340] = 1340, - [1341] = 1341, - [1342] = 1093, - [1343] = 1114, - [1344] = 1115, - [1345] = 1109, - [1346] = 1121, - [1347] = 1098, - [1348] = 1126, - [1349] = 1108, - [1350] = 1109, - [1351] = 1073, - [1352] = 637, - [1353] = 1083, - [1354] = 1126, - [1355] = 1108, - [1356] = 648, - [1357] = 1091, - [1358] = 1093, - [1359] = 1098, - [1360] = 1124, - [1361] = 642, - [1362] = 649, - [1363] = 634, - [1364] = 636, - [1365] = 635, - [1366] = 637, - [1367] = 1001, - [1368] = 639, - [1369] = 1015, - [1370] = 640, - [1371] = 641, - [1372] = 644, - [1373] = 1092, - [1374] = 639, - [1375] = 630, - [1376] = 1134, - [1377] = 1050, - [1378] = 1092, - [1379] = 1143, - [1380] = 1145, - [1381] = 643, - [1382] = 1134, - [1383] = 1114, - [1384] = 1115, - [1385] = 1115, - [1386] = 648, - [1387] = 1050, - [1388] = 1089, - [1389] = 1081, - [1390] = 1135, - [1391] = 640, - [1392] = 636, - [1393] = 641, - [1394] = 1118, - [1395] = 649, - [1396] = 644, - [1397] = 1084, - [1398] = 631, - [1399] = 632, - [1400] = 639, - [1401] = 1119, - [1402] = 639, - [1403] = 1120, - [1404] = 630, - [1405] = 1073, - [1406] = 1083, - [1407] = 1147, - [1408] = 1089, - [1409] = 1084, - [1410] = 634, - [1411] = 1049, - [1412] = 1143, - [1413] = 1095, - [1414] = 1145, - [1415] = 1095, - [1416] = 640, - [1417] = 642, - [1418] = 1081, - [1419] = 643, - [1420] = 1118, - [1421] = 1119, - [1422] = 1120, - [1423] = 641, - [1424] = 1121, - [1425] = 1122, - [1426] = 1123, - [1427] = 1114, - [1428] = 1121, - [1429] = 635, - [1430] = 637, - [1431] = 1073, - [1432] = 1083, - [1433] = 643, - [1434] = 1089, - [1435] = 639, - [1436] = 1143, - [1437] = 1145, - [1438] = 643, - [1439] = 1056, - [1440] = 1084, - [1441] = 1057, - [1442] = 1049, - [1443] = 1095, - [1444] = 1118, - [1445] = 1119, - [1446] = 1120, - [1447] = 634, - [1448] = 1056, - [1449] = 1057, - [1450] = 1058, - [1451] = 1135, - [1452] = 1058, - [1453] = 1147, - [1454] = 1091, - [1455] = 1056, - [1456] = 1093, - [1457] = 1098, - [1458] = 1108, - [1459] = 1109, - [1460] = 1126, - [1461] = 1057, - [1462] = 1081, - [1463] = 1058, - [1464] = 1092, - [1465] = 1134, - [1466] = 1050, - [1467] = 1114, - [1468] = 1115, - [1469] = 631, - [1470] = 632, - [1471] = 649, - [1472] = 648, - [1473] = 642, - [1474] = 636, - [1475] = 632, - [1476] = 648, - [1477] = 642, - [1478] = 649, - [1479] = 630, - [1480] = 639, - [1481] = 639, - [1482] = 639, - [1483] = 639, - [1484] = 644, - [1485] = 635, - [1486] = 634, - [1487] = 636, - [1488] = 1341, - [1489] = 640, - [1490] = 1340, - [1491] = 641, - [1492] = 637, - [1493] = 631, - [1494] = 1494, - [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1498, - [1500] = 1496, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1497, - [1508] = 1498, - [1509] = 1501, - [1510] = 1496, - [1511] = 1501, - [1512] = 1503, - [1513] = 1504, - [1514] = 1502, - [1515] = 1503, - [1516] = 1504, - [1517] = 1502, - [1518] = 1505, - [1519] = 1506, - [1520] = 1497, - [1521] = 1498, - [1522] = 1505, - [1523] = 1506, - [1524] = 1505, - [1525] = 1496, - [1526] = 1501, - [1527] = 1497, - [1528] = 1502, - [1529] = 1503, - [1530] = 1504, - [1531] = 1506, - [1532] = 1532, - [1533] = 1533, - [1534] = 1533, - [1535] = 1533, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1538, + [1340] = 643, + [1341] = 635, + [1342] = 1099, + [1343] = 1129, + [1344] = 1082, + [1345] = 1130, + [1346] = 990, + [1347] = 1037, + [1348] = 1041, + [1349] = 1052, + [1350] = 1095, + [1351] = 632, + [1352] = 1093, + [1353] = 1055, + [1354] = 1056, + [1355] = 635, + [1356] = 1112, + [1357] = 1123, + [1358] = 645, + [1359] = 624, + [1360] = 1112, + [1361] = 1054, + [1362] = 1092, + [1363] = 1037, + [1364] = 649, + [1365] = 650, + [1366] = 645, + [1367] = 1055, + [1368] = 645, + [1369] = 626, + [1370] = 1095, + [1371] = 1056, + [1372] = 1372, + [1373] = 1373, + [1374] = 1050, + [1375] = 640, + [1376] = 1049, + [1377] = 633, + [1378] = 634, + [1379] = 636, + [1380] = 641, + [1381] = 651, + [1382] = 640, + [1383] = 1123, + [1384] = 1050, + [1385] = 1034, + [1386] = 1043, + [1387] = 641, + [1388] = 1041, + [1389] = 624, + [1390] = 643, + [1391] = 1033, + [1392] = 1052, + [1393] = 649, + [1394] = 1089, + [1395] = 1054, + [1396] = 624, + [1397] = 1055, + [1398] = 1056, + [1399] = 1103, + [1400] = 1082, + [1401] = 650, + [1402] = 1068, + [1403] = 1068, + [1404] = 1092, + [1405] = 1010, + [1406] = 651, + [1407] = 1049, + [1408] = 626, + [1409] = 1068, + [1410] = 633, + [1411] = 1054, + [1412] = 626, + [1413] = 1058, + [1414] = 1121, + [1415] = 641, + [1416] = 1055, + [1417] = 1056, + [1418] = 1037, + [1419] = 1041, + [1420] = 1130, + [1421] = 1082, + [1422] = 1033, + [1423] = 1049, + [1424] = 1069, + [1425] = 1052, + [1426] = 627, + [1427] = 627, + [1428] = 1070, + [1429] = 643, + [1430] = 1076, + [1431] = 649, + [1432] = 1121, + [1433] = 1054, + [1434] = 633, + [1435] = 651, + [1436] = 1092, + [1437] = 1095, + [1438] = 634, + [1439] = 1112, + [1440] = 1123, + [1441] = 1050, + [1442] = 1068, + [1443] = 1103, + [1444] = 1034, + [1445] = 1057, + [1446] = 1058, + [1447] = 1121, + [1448] = 636, + [1449] = 640, + [1450] = 1129, + [1451] = 1043, + [1452] = 1057, + [1453] = 1057, + [1454] = 1058, + [1455] = 1093, + [1456] = 1090, + [1457] = 1099, + [1458] = 650, + [1459] = 645, + [1460] = 633, + [1461] = 632, + [1462] = 624, + [1463] = 634, + [1464] = 635, + [1465] = 636, + [1466] = 649, + [1467] = 1372, + [1468] = 1373, + [1469] = 651, + [1470] = 651, + [1471] = 650, + [1472] = 640, + [1473] = 641, + [1474] = 651, + [1475] = 651, + [1476] = 643, + [1477] = 626, + [1478] = 1478, + [1479] = 1479, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 1484, + [1485] = 1485, + [1486] = 1480, + [1487] = 1487, + [1488] = 1482, + [1489] = 1480, + [1490] = 1483, + [1491] = 1491, + [1492] = 1481, + [1493] = 1493, + [1494] = 1481, + [1495] = 1493, + [1496] = 1484, + [1497] = 1493, + [1498] = 1487, + [1499] = 1483, + [1500] = 1491, + [1501] = 1491, + [1502] = 1481, + [1503] = 1484, + [1504] = 1493, + [1505] = 1485, + [1506] = 1482, + [1507] = 1482, + [1508] = 1483, + [1509] = 1480, + [1510] = 1491, + [1511] = 1487, + [1512] = 1484, + [1513] = 1485, + [1514] = 1487, + [1515] = 1485, + [1516] = 1516, + [1517] = 1517, + [1518] = 1517, + [1519] = 1519, + [1520] = 1517, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1522, + [1525] = 1521, + [1526] = 1526, + [1527] = 1527, + [1528] = 1526, + [1529] = 1523, + [1530] = 1523, + [1531] = 1527, + [1532] = 1522, + [1533] = 1526, + [1534] = 1527, + [1535] = 1521, + [1536] = 1526, + [1537] = 1523, + [1538] = 1521, + [1539] = 1527, + [1540] = 1522, [1541] = 1541, - [1542] = 1537, - [1543] = 1541, - [1544] = 1539, - [1545] = 1538, - [1546] = 1537, - [1547] = 1537, - [1548] = 1548, - [1549] = 1548, - [1550] = 1541, - [1551] = 1548, - [1552] = 1548, - [1553] = 1539, - [1554] = 1538, - [1555] = 1539, - [1556] = 1541, - [1557] = 1557, - [1558] = 1558, - [1559] = 1559, - [1560] = 1558, - [1561] = 1558, - [1562] = 1559, - [1563] = 1559, - [1564] = 1564, - [1565] = 1559, - [1566] = 1558, - [1567] = 1567, - [1568] = 1567, - [1569] = 1564, - [1570] = 1567, - [1571] = 1567, - [1572] = 1564, - [1573] = 1564, - [1574] = 1564, - [1575] = 1567, - [1576] = 1564, - [1577] = 1567, - [1578] = 1564, - [1579] = 1567, - [1580] = 1567, + [1542] = 1542, + [1543] = 1543, + [1544] = 1544, + [1545] = 1542, + [1546] = 1542, + [1547] = 1543, + [1548] = 1543, + [1549] = 1542, + [1550] = 1550, + [1551] = 1543, + [1552] = 1550, + [1553] = 1544, + [1554] = 1550, + [1555] = 1544, + [1556] = 1544, + [1557] = 1550, + [1558] = 1544, + [1559] = 1550, + [1560] = 1550, + [1561] = 1544, + [1562] = 1544, + [1563] = 1550, + [1564] = 1550, + [1565] = 1373, + [1566] = 1372, + [1567] = 632, + [1568] = 635, + [1569] = 645, + [1570] = 624, + [1571] = 1571, + [1572] = 1544, + [1573] = 1573, + [1574] = 649, + [1575] = 1575, + [1576] = 1576, + [1577] = 651, + [1578] = 650, + [1579] = 1579, + [1580] = 1580, [1581] = 1581, - [1582] = 1340, - [1583] = 1341, - [1584] = 640, - [1585] = 641, - [1586] = 644, - [1587] = 630, + [1582] = 1580, + [1583] = 635, + [1584] = 645, + [1585] = 624, + [1586] = 1586, + [1587] = 1587, [1588] = 1588, - [1589] = 1564, - [1590] = 1590, - [1591] = 632, - [1592] = 639, - [1593] = 631, - [1594] = 1594, - [1595] = 1595, - [1596] = 1596, - [1597] = 1597, - [1598] = 640, - [1599] = 640, - [1600] = 641, - [1601] = 1340, - [1602] = 1341, - [1603] = 1596, - [1604] = 1597, - [1605] = 1594, - [1606] = 640, - [1607] = 641, - [1608] = 644, - [1609] = 630, - [1610] = 641, - [1611] = 631, - [1612] = 632, - [1613] = 644, - [1614] = 1614, - [1615] = 1341, - [1616] = 1616, - [1617] = 1617, - [1618] = 1340, - [1619] = 1341, - [1620] = 630, - [1621] = 644, - [1622] = 1616, - [1623] = 1616, - [1624] = 1616, - [1625] = 1616, - [1626] = 1616, - [1627] = 1616, - [1628] = 1628, - [1629] = 1616, - [1630] = 639, - [1631] = 1616, - [1632] = 1616, - [1633] = 630, - [1634] = 1634, - [1635] = 1340, - [1636] = 1636, - [1637] = 1636, - [1638] = 1634, - [1639] = 1636, - [1640] = 1614, + [1589] = 1373, + [1590] = 1372, + [1591] = 1373, + [1592] = 1592, + [1593] = 1579, + [1594] = 632, + [1595] = 635, + [1596] = 1581, + [1597] = 645, + [1598] = 1598, + [1599] = 651, + [1600] = 1372, + [1601] = 632, + [1602] = 632, + [1603] = 635, + [1604] = 649, + [1605] = 650, + [1606] = 1372, + [1607] = 1373, + [1608] = 645, + [1609] = 1598, + [1610] = 1598, + [1611] = 1598, + [1612] = 1598, + [1613] = 1598, + [1614] = 1598, + [1615] = 1598, + [1616] = 1598, + [1617] = 1598, + [1618] = 624, + [1619] = 624, + [1620] = 1620, + [1621] = 1575, + [1622] = 1622, + [1623] = 1620, + [1624] = 1622, + [1625] = 1622, + [1626] = 1622, + [1627] = 1627, + [1628] = 1588, + [1629] = 1622, + [1630] = 1622, + [1631] = 1631, + [1632] = 1627, + [1633] = 1586, + [1634] = 1627, + [1635] = 1587, + [1636] = 1622, + [1637] = 1576, + [1638] = 1592, + [1639] = 1622, + [1640] = 1640, [1641] = 1641, - [1642] = 1636, - [1643] = 1590, - [1644] = 1636, - [1645] = 1636, - [1646] = 1617, - [1647] = 1636, - [1648] = 1648, - [1649] = 1648, - [1650] = 1628, + [1642] = 1641, + [1643] = 1643, + [1644] = 1643, + [1645] = 1645, + [1646] = 1646, + [1647] = 1647, + [1648] = 1647, + [1649] = 1649, + [1650] = 1650, [1651] = 1651, - [1652] = 1651, - [1653] = 1595, - [1654] = 1636, - [1655] = 1648, + [1652] = 1652, + [1653] = 1653, + [1654] = 1650, + [1655] = 1655, [1656] = 1656, [1657] = 1657, - [1658] = 1657, + [1658] = 1658, [1659] = 1659, - [1660] = 1660, - [1661] = 1659, - [1662] = 1662, - [1663] = 1663, - [1664] = 1662, - [1665] = 1665, + [1660] = 1650, + [1661] = 1650, + [1662] = 1650, + [1663] = 1650, + [1664] = 1650, + [1665] = 1650, [1666] = 1666, - [1667] = 1665, + [1667] = 1652, [1668] = 1668, [1669] = 1669, - [1670] = 1670, - [1671] = 1665, + [1670] = 1666, + [1671] = 1671, [1672] = 1672, - [1673] = 1665, - [1674] = 1665, - [1675] = 1665, - [1676] = 1676, - [1677] = 1677, - [1678] = 1665, - [1679] = 1679, - [1680] = 1680, - [1681] = 1665, - [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 1685, - [1686] = 1682, - [1687] = 1684, - [1688] = 1683, - [1689] = 1689, - [1690] = 1683, - [1691] = 1684, - [1692] = 1685, - [1693] = 1693, - [1694] = 1682, - [1695] = 1679, - [1696] = 1683, - [1697] = 1684, - [1698] = 1685, - [1699] = 1682, - [1700] = 1685, - [1701] = 1683, - [1702] = 1684, - [1703] = 1685, - [1704] = 1682, - [1705] = 1668, - [1706] = 1670, - [1707] = 1684, - [1708] = 1685, - [1709] = 1709, - [1710] = 1682, - [1711] = 1683, - [1712] = 1684, - [1713] = 1685, - [1714] = 1682, - [1715] = 1683, - [1716] = 1684, - [1717] = 1685, - [1718] = 1682, - [1719] = 1683, - [1720] = 1684, - [1721] = 1721, - [1722] = 1677, - [1723] = 1721, - [1724] = 1680, - [1725] = 1721, - [1726] = 1676, - [1727] = 1721, - [1728] = 1721, - [1729] = 1672, - [1730] = 1721, - [1731] = 1721, - [1732] = 1721, - [1733] = 1666, - [1734] = 1669, - [1735] = 1683, - [1736] = 1668, - [1737] = 1737, - [1738] = 1679, - [1739] = 1676, - [1740] = 1740, - [1741] = 1680, - [1742] = 1669, - [1743] = 1670, - [1744] = 1672, - [1745] = 1669, - [1746] = 1740, - [1747] = 1668, - [1748] = 1679, - [1749] = 1670, - [1750] = 1672, - [1751] = 1666, - [1752] = 1676, - [1753] = 1677, - [1754] = 1677, - [1755] = 1680, + [1673] = 1673, + [1674] = 1674, + [1675] = 1671, + [1676] = 1651, + [1677] = 1674, + [1678] = 1671, + [1679] = 1672, + [1680] = 1674, + [1681] = 1681, + [1682] = 1666, + [1683] = 1671, + [1684] = 1674, + [1685] = 1666, + [1686] = 1671, + [1687] = 1672, + [1688] = 1674, + [1689] = 1659, + [1690] = 1666, + [1691] = 1671, + [1692] = 1672, + [1693] = 1674, + [1694] = 1666, + [1695] = 1671, + [1696] = 1672, + [1697] = 1658, + [1698] = 1674, + [1699] = 1672, + [1700] = 1666, + [1701] = 1671, + [1702] = 1672, + [1703] = 1674, + [1704] = 1666, + [1705] = 1671, + [1706] = 1669, + [1707] = 1653, + [1708] = 1655, + [1709] = 1669, + [1710] = 1656, + [1711] = 1649, + [1712] = 1669, + [1713] = 1657, + [1714] = 1669, + [1715] = 1669, + [1716] = 1669, + [1717] = 1669, + [1718] = 1666, + [1719] = 1672, + [1720] = 1652, + [1721] = 1659, + [1722] = 1658, + [1723] = 1658, + [1724] = 1653, + [1725] = 1655, + [1726] = 1656, + [1727] = 1649, + [1728] = 1657, + [1729] = 1652, + [1730] = 1651, + [1731] = 1731, + [1732] = 1651, + [1733] = 1731, + [1734] = 1734, + [1735] = 1735, + [1736] = 1653, + [1737] = 1659, + [1738] = 1655, + [1739] = 1656, + [1740] = 1649, + [1741] = 1657, + [1742] = 1651, + [1743] = 1659, + [1744] = 1658, + [1745] = 1658, + [1746] = 1653, + [1747] = 1655, + [1748] = 1656, + [1749] = 1649, + [1750] = 1657, + [1751] = 1656, + [1752] = 1649, + [1753] = 1657, + [1754] = 1652, + [1755] = 1658, [1756] = 1756, - [1757] = 1666, + [1757] = 1731, [1758] = 1758, - [1759] = 1672, - [1760] = 1679, - [1761] = 1668, - [1762] = 1762, - [1763] = 1680, - [1764] = 1666, - [1765] = 1680, - [1766] = 1677, - [1767] = 1740, - [1768] = 1679, - [1769] = 1769, - [1770] = 1770, - [1771] = 1668, - [1772] = 1677, - [1773] = 1670, + [1759] = 1652, + [1760] = 1760, + [1761] = 1761, + [1762] = 1653, + [1763] = 1731, + [1764] = 1764, + [1765] = 1765, + [1766] = 1653, + [1767] = 1659, + [1768] = 1655, + [1769] = 1652, + [1770] = 1651, + [1771] = 1655, + [1772] = 1656, + [1773] = 1649, [1774] = 1774, - [1775] = 1680, - [1776] = 1677, - [1777] = 1676, - [1778] = 1676, - [1779] = 1669, - [1780] = 1669, - [1781] = 1740, - [1782] = 1669, - [1783] = 1670, - [1784] = 1670, - [1785] = 1672, - [1786] = 1672, - [1787] = 1679, - [1788] = 1666, - [1789] = 1789, - [1790] = 1790, - [1791] = 1668, - [1792] = 1666, - [1793] = 1676, - [1794] = 1774, - [1795] = 1795, - [1796] = 1796, - [1797] = 1797, - [1798] = 1798, - [1799] = 1799, + [1775] = 1657, + [1776] = 1659, + [1777] = 1651, + [1778] = 1656, + [1779] = 1779, + [1780] = 1780, + [1781] = 1761, + [1782] = 1782, + [1783] = 1783, + [1784] = 1784, + [1785] = 1658, + [1786] = 1783, + [1787] = 1659, + [1788] = 1780, + [1789] = 1655, + [1790] = 1783, + [1791] = 1791, + [1792] = 1780, + [1793] = 1780, + [1794] = 1794, + [1795] = 1794, + [1796] = 1651, + [1797] = 1758, + [1798] = 1780, + [1799] = 1735, [1800] = 1800, - [1801] = 1795, + [1801] = 1780, [1802] = 1802, - [1803] = 1803, - [1804] = 1680, - [1805] = 1805, + [1803] = 1794, + [1804] = 1652, + [1805] = 1758, [1806] = 1806, - [1807] = 1807, - [1808] = 1796, - [1809] = 1806, - [1810] = 1668, - [1811] = 1795, + [1807] = 1649, + [1808] = 1657, + [1809] = 1809, + [1810] = 1758, + [1811] = 1811, [1812] = 1812, - [1813] = 1796, - [1814] = 1795, - [1815] = 1774, - [1816] = 1795, - [1817] = 1795, - [1818] = 1679, - [1819] = 1795, - [1820] = 1820, + [1813] = 1813, + [1814] = 1814, + [1815] = 1780, + [1816] = 1816, + [1817] = 1780, + [1818] = 1818, + [1819] = 1811, + [1820] = 1779, [1821] = 1821, - [1822] = 1822, - [1823] = 1821, - [1824] = 1824, - [1825] = 1666, - [1826] = 1826, - [1827] = 1827, - [1828] = 1828, - [1829] = 1807, - [1830] = 1795, - [1831] = 1822, - [1832] = 1806, - [1833] = 1795, + [1822] = 1779, + [1823] = 1780, + [1824] = 1791, + [1825] = 1825, + [1826] = 1780, + [1827] = 1814, + [1828] = 1653, + [1829] = 1829, + [1830] = 1765, + [1831] = 1831, + [1832] = 1735, + [1833] = 1833, [1834] = 1756, - [1835] = 1677, - [1836] = 1798, - [1837] = 1676, - [1838] = 1774, - [1839] = 1822, - [1840] = 1669, - [1841] = 1670, - [1842] = 1672, - [1843] = 1790, - [1844] = 1795, - [1845] = 1845, + [1835] = 1835, + [1836] = 1836, + [1837] = 1782, + [1838] = 1835, + [1839] = 1765, + [1840] = 1840, + [1841] = 1836, + [1842] = 1840, + [1843] = 1774, + [1844] = 1829, + [1845] = 1782, [1846] = 1846, [1847] = 1756, - [1848] = 1848, - [1849] = 1849, + [1848] = 1840, + [1849] = 1840, [1850] = 1850, - [1851] = 1851, - [1852] = 1851, - [1853] = 1758, - [1854] = 1845, - [1855] = 1845, - [1856] = 1856, - [1857] = 1851, - [1858] = 1820, - [1859] = 1789, - [1860] = 1846, - [1861] = 1861, - [1862] = 1862, - [1863] = 1756, + [1851] = 1756, + [1852] = 1782, + [1853] = 1853, + [1854] = 1840, + [1855] = 1840, + [1856] = 1829, + [1857] = 1840, + [1858] = 1858, + [1859] = 1774, + [1860] = 1860, + [1861] = 1735, + [1862] = 1840, + [1863] = 1846, [1864] = 1864, - [1865] = 1865, - [1866] = 1762, + [1865] = 1853, + [1866] = 1866, [1867] = 1867, - [1868] = 1789, - [1869] = 1848, - [1870] = 1851, - [1871] = 1851, - [1872] = 1850, - [1873] = 1873, - [1874] = 1874, - [1875] = 1758, - [1876] = 1873, - [1877] = 1820, + [1868] = 1774, + [1869] = 1869, + [1870] = 1833, + [1871] = 1833, + [1872] = 1866, + [1873] = 1835, + [1874] = 1836, + [1875] = 1875, + [1876] = 1876, + [1877] = 1765, [1878] = 1878, - [1879] = 1851, + [1879] = 1764, [1880] = 1880, - [1881] = 1873, - [1882] = 1851, - [1883] = 1758, - [1884] = 1762, - [1885] = 1762, + [1881] = 1881, + [1882] = 1882, + [1883] = 1831, + [1884] = 1884, + [1885] = 1885, [1886] = 1886, - [1887] = 1880, - [1888] = 1849, - [1889] = 1851, - [1890] = 1880, + [1887] = 1887, + [1888] = 1888, + [1889] = 1889, + [1890] = 1890, [1891] = 1891, - [1892] = 1789, - [1893] = 1846, - [1894] = 1820, + [1892] = 1892, + [1893] = 1774, + [1894] = 1894, [1895] = 1895, [1896] = 1896, [1897] = 1897, - [1898] = 1790, + [1898] = 1831, [1899] = 1899, [1900] = 1900, - [1901] = 1789, + [1901] = 1901, [1902] = 1902, - [1903] = 1874, - [1904] = 1904, - [1905] = 1874, - [1906] = 1906, - [1907] = 1891, - [1908] = 1908, + [1903] = 1903, + [1904] = 1761, + [1905] = 1905, + [1906] = 1895, + [1907] = 1897, + [1908] = 1764, [1909] = 1909, - [1910] = 1802, - [1911] = 1911, + [1910] = 1910, + [1911] = 1881, [1912] = 1912, - [1913] = 1913, + [1913] = 1784, [1914] = 1914, - [1915] = 1915, + [1915] = 1869, [1916] = 1916, - [1917] = 1917, - [1918] = 1802, + [1917] = 1902, + [1918] = 1918, [1919] = 1919, [1920] = 1920, [1921] = 1921, - [1922] = 1922, - [1923] = 1909, + [1922] = 1903, + [1923] = 1910, [1924] = 1924, - [1925] = 1916, - [1926] = 1926, - [1927] = 1769, + [1925] = 1897, + [1926] = 1882, + [1927] = 1927, [1928] = 1928, - [1929] = 1908, - [1930] = 1802, - [1931] = 1931, - [1932] = 1904, - [1933] = 1933, - [1934] = 1934, - [1935] = 1917, - [1936] = 1900, - [1937] = 1891, - [1938] = 1909, + [1929] = 1880, + [1930] = 1918, + [1931] = 1909, + [1932] = 1927, + [1933] = 1765, + [1934] = 1914, + [1935] = 1784, + [1936] = 1936, + [1937] = 1937, + [1938] = 1938, [1939] = 1939, - [1940] = 1762, - [1941] = 1931, + [1940] = 1909, + [1941] = 1941, [1942] = 1942, - [1943] = 1911, - [1944] = 1803, - [1945] = 1945, - [1946] = 1891, - [1947] = 1947, - [1948] = 1948, - [1949] = 1949, - [1950] = 1911, - [1951] = 1908, - [1952] = 1919, + [1943] = 1869, + [1944] = 1575, + [1945] = 1914, + [1946] = 1942, + [1947] = 1800, + [1948] = 1761, + [1949] = 1869, + [1950] = 1881, + [1951] = 1951, + [1952] = 1936, [1953] = 1953, - [1954] = 1954, - [1955] = 1904, - [1956] = 1947, + [1954] = 1887, + [1955] = 1756, + [1956] = 1881, [1957] = 1957, - [1958] = 1947, - [1959] = 1920, - [1960] = 1960, - [1961] = 1961, - [1962] = 1874, - [1963] = 1595, - [1964] = 1926, - [1965] = 1758, - [1966] = 1954, + [1958] = 1895, + [1959] = 1764, + [1960] = 1910, + [1961] = 1761, + [1962] = 1962, + [1963] = 1939, + [1964] = 1902, + [1965] = 1576, + [1966] = 1966, [1967] = 1967, - [1968] = 1968, - [1969] = 1957, - [1970] = 1970, - [1971] = 1926, + [1968] = 1899, + [1969] = 1969, + [1970] = 1882, + [1971] = 1971, [1972] = 1972, [1973] = 1973, - [1974] = 1931, - [1975] = 1975, - [1976] = 1916, - [1977] = 1975, - [1978] = 1954, - [1979] = 1979, - [1980] = 1980, - [1981] = 1769, - [1982] = 1790, - [1983] = 1967, - [1984] = 1968, - [1985] = 1985, - [1986] = 1986, - [1987] = 1899, - [1988] = 1970, - [1989] = 1922, - [1990] = 1917, - [1991] = 1948, - [1992] = 1992, - [1993] = 1957, - [1994] = 1590, - [1995] = 1995, - [1996] = 1949, - [1997] = 1997, - [1998] = 1911, - [1999] = 1790, - [2000] = 1769, + [1974] = 1936, + [1975] = 1941, + [1976] = 1784, + [1977] = 1977, + [1978] = 1919, + [1979] = 1888, + [1980] = 1889, + [1981] = 1920, + [1982] = 1887, + [1983] = 1983, + [1984] = 1984, + [1985] = 1831, + [1986] = 1924, + [1987] = 1924, + [1988] = 1888, + [1989] = 1989, + [1990] = 1892, + [1991] = 1900, + [1992] = 1901, + [1993] = 1993, + [1994] = 1994, + [1995] = 1889, + [1996] = 1996, + [1997] = 1920, + [1998] = 1998, + [1999] = 1892, + [2000] = 1900, [2001] = 2001, - [2002] = 2002, - [2003] = 1902, + [2002] = 1901, + [2003] = 2003, [2004] = 2004, - [2005] = 2005, + [2005] = 1899, [2006] = 2006, - [2007] = 1617, - [2008] = 1912, - [2009] = 1914, + [2007] = 2001, + [2008] = 1967, + [2009] = 2009, [2010] = 2010, - [2011] = 1922, + [2011] = 2011, [2012] = 2012, [2013] = 2013, - [2014] = 2014, - [2015] = 2015, - [2016] = 1933, - [2017] = 1979, - [2018] = 2005, + [2014] = 2013, + [2015] = 1927, + [2016] = 1880, + [2017] = 1918, + [2018] = 2018, [2019] = 2019, [2020] = 2020, [2021] = 2021, - [2022] = 2022, - [2023] = 1933, - [2024] = 1997, - [2025] = 1802, - [2026] = 2005, + [2022] = 2001, + [2023] = 2023, + [2024] = 1888, + [2025] = 1889, + [2026] = 1920, [2027] = 2027, - [2028] = 2028, + [2028] = 2013, [2029] = 2029, - [2030] = 1967, - [2031] = 1947, + [2030] = 1924, + [2031] = 2031, [2032] = 2032, - [2033] = 2005, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2037, - [2038] = 2010, + [2033] = 1984, + [2034] = 1885, + [2035] = 1896, + [2036] = 1897, + [2037] = 1784, + [2038] = 1962, [2039] = 2039, - [2040] = 2040, - [2041] = 2041, - [2042] = 2015, + [2040] = 2001, + [2041] = 1957, + [2042] = 1902, [2043] = 2043, - [2044] = 2021, - [2045] = 2045, - [2046] = 2046, - [2047] = 2047, - [2048] = 1634, - [2049] = 2049, - [2050] = 2050, - [2051] = 2006, - [2052] = 2002, - [2053] = 2028, - [2054] = 2054, + [2044] = 2031, + [2045] = 2032, + [2046] = 2013, + [2047] = 1892, + [2048] = 1900, + [2049] = 1901, + [2050] = 1993, + [2051] = 2001, + [2052] = 2052, + [2053] = 2053, + [2054] = 1592, [2055] = 2055, [2056] = 2056, [2057] = 2057, - [2058] = 1972, - [2059] = 1895, - [2060] = 1980, - [2061] = 1967, - [2062] = 1968, - [2063] = 1972, - [2064] = 1919, - [2065] = 2065, - [2066] = 1895, - [2067] = 2067, - [2068] = 2068, - [2069] = 1912, - [2070] = 2034, - [2071] = 2067, - [2072] = 1980, - [2073] = 2073, - [2074] = 2010, + [2058] = 1998, + [2059] = 2059, + [2060] = 2060, + [2061] = 2001, + [2062] = 2062, + [2063] = 2063, + [2064] = 2001, + [2065] = 1885, + [2066] = 1993, + [2067] = 1896, + [2068] = 2010, + [2069] = 2069, + [2070] = 2001, + [2071] = 2071, + [2072] = 2072, + [2073] = 1586, + [2074] = 2074, [2075] = 2075, - [2076] = 1968, - [2077] = 1970, - [2078] = 1902, - [2079] = 2079, - [2080] = 2054, - [2081] = 2015, - [2082] = 2021, - [2083] = 1922, - [2084] = 1902, - [2085] = 1912, - [2086] = 2073, - [2087] = 1914, - [2088] = 1614, - [2089] = 1873, - [2090] = 1970, - [2091] = 2005, - [2092] = 1917, - [2093] = 1914, - [2094] = 2068, - [2095] = 2073, - [2096] = 2005, - [2097] = 1909, - [2098] = 1919, - [2099] = 2099, - [2100] = 2100, - [2101] = 1920, + [2076] = 2076, + [2077] = 2077, + [2078] = 1587, + [2079] = 2004, + [2080] = 2019, + [2081] = 2081, + [2082] = 2082, + [2083] = 1899, + [2084] = 2084, + [2085] = 2082, + [2086] = 2086, + [2087] = 2023, + [2088] = 2088, + [2089] = 2020, + [2090] = 1588, + [2091] = 1957, + [2092] = 1927, + [2093] = 2093, + [2094] = 1885, + [2095] = 2088, + [2096] = 1880, + [2097] = 1918, + [2098] = 1896, + [2099] = 2031, + [2100] = 2032, + [2101] = 2101, [2102] = 2102, - [2103] = 2005, + [2103] = 2103, [2104] = 2104, - [2105] = 1972, - [2106] = 1895, - [2107] = 2107, - [2108] = 2021, - [2109] = 1920, - [2110] = 2065, - [2111] = 1933, - [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2041, - [2119] = 2119, + [2105] = 1835, + [2106] = 2106, + [2107] = 1957, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 2011, + [2112] = 2012, + [2113] = 2077, + [2114] = 2072, + [2115] = 2053, + [2116] = 2074, + [2117] = 2060, + [2118] = 2043, + [2119] = 2052, [2120] = 2120, - [2121] = 1980, - [2122] = 1628, - [2123] = 2005, - [2124] = 2119, - [2125] = 2012, - [2126] = 2020, - [2127] = 2112, + [2121] = 2121, + [2122] = 2081, + [2123] = 2055, + [2124] = 2056, + [2125] = 2057, + [2126] = 2075, + [2127] = 2059, [2128] = 2128, - [2129] = 2029, - [2130] = 2035, - [2131] = 2131, - [2132] = 2040, - [2133] = 2043, - [2134] = 2050, - [2135] = 2041, - [2136] = 2055, - [2137] = 2012, - [2138] = 2102, - [2139] = 2107, - [2140] = 2004, - [2141] = 2113, - [2142] = 2115, - [2143] = 2116, - [2144] = 2119, - [2145] = 2120, - [2146] = 2014, - [2147] = 2022, - [2148] = 2027, - [2149] = 2045, - [2150] = 2047, - [2151] = 2019, - [2152] = 2020, + [2129] = 2084, + [2130] = 2059, + [2131] = 2120, + [2132] = 2069, + [2133] = 2071, + [2134] = 2072, + [2135] = 2074, + [2136] = 2075, + [2137] = 2137, + [2138] = 2077, + [2139] = 2081, + [2140] = 2084, + [2141] = 2141, + [2142] = 2142, + [2143] = 2102, + [2144] = 2103, + [2145] = 2104, + [2146] = 2146, + [2147] = 2106, + [2148] = 1989, + [2149] = 2039, + [2150] = 2109, + [2151] = 2043, + [2152] = 2121, [2153] = 2153, - [2154] = 2154, + [2154] = 2102, [2155] = 2155, - [2156] = 2156, - [2157] = 2157, - [2158] = 2032, - [2159] = 2159, - [2160] = 2160, - [2161] = 2161, - [2162] = 2162, - [2163] = 2160, + [2156] = 2027, + [2157] = 2120, + [2158] = 2121, + [2159] = 2103, + [2160] = 2128, + [2161] = 2104, + [2162] = 2106, + [2163] = 2163, [2164] = 2164, - [2165] = 2112, - [2166] = 2029, - [2167] = 2035, - [2168] = 2040, - [2169] = 2043, - [2170] = 2050, - [2171] = 2041, - [2172] = 2055, + [2165] = 2165, + [2166] = 2166, + [2167] = 2167, + [2168] = 2009, + [2169] = 1989, + [2170] = 2170, + [2171] = 2056, + [2172] = 2128, [2173] = 2173, - [2174] = 2012, + [2174] = 2174, [2175] = 2175, - [2176] = 2020, - [2177] = 2102, - [2178] = 2107, - [2179] = 2004, - [2180] = 2113, - [2181] = 2115, - [2182] = 2116, - [2183] = 2119, - [2184] = 2184, - [2185] = 2120, - [2186] = 2014, - [2187] = 2022, - [2188] = 2027, - [2189] = 2045, - [2190] = 2153, - [2191] = 2154, - [2192] = 2047, - [2193] = 2019, - [2194] = 2160, + [2176] = 2077, + [2177] = 2062, + [2178] = 2039, + [2179] = 2052, + [2180] = 2010, + [2181] = 2181, + [2182] = 2084, + [2183] = 2183, + [2184] = 2057, + [2185] = 2102, + [2186] = 2103, + [2187] = 2187, + [2188] = 2104, + [2189] = 2189, + [2190] = 2106, + [2191] = 1989, + [2192] = 2192, + [2193] = 2193, + [2194] = 2052, [2195] = 2195, - [2196] = 2112, - [2197] = 2197, - [2198] = 2036, + [2196] = 2055, + [2197] = 2056, + [2198] = 2057, [2199] = 2199, - [2200] = 2200, - [2201] = 2201, - [2202] = 2153, - [2203] = 2154, - [2204] = 2160, - [2205] = 2104, - [2206] = 2029, - [2207] = 2131, - [2208] = 2035, + [2200] = 2120, + [2201] = 2121, + [2202] = 2011, + [2203] = 2055, + [2204] = 2012, + [2205] = 2059, + [2206] = 2206, + [2207] = 2039, + [2208] = 2009, [2209] = 2209, - [2210] = 2040, - [2211] = 2043, - [2212] = 2050, - [2213] = 2055, - [2214] = 2114, + [2210] = 2010, + [2211] = 2011, + [2212] = 2012, + [2213] = 2213, + [2214] = 2214, [2215] = 2215, - [2216] = 2216, + [2216] = 2128, [2217] = 2217, - [2218] = 2218, - [2219] = 2102, - [2220] = 2107, - [2221] = 2004, - [2222] = 2113, - [2223] = 2115, - [2224] = 2224, - [2225] = 2225, - [2226] = 2116, - [2227] = 2227, - [2228] = 2120, + [2218] = 2069, + [2219] = 2071, + [2220] = 2220, + [2221] = 2221, + [2222] = 1994, + [2223] = 2215, + [2224] = 2217, + [2225] = 2141, + [2226] = 2072, + [2227] = 2221, + [2228] = 2069, [2229] = 2229, [2230] = 2230, - [2231] = 2231, - [2232] = 2232, - [2233] = 2014, - [2234] = 2234, - [2235] = 2022, - [2236] = 2027, - [2237] = 2037, + [2231] = 2071, + [2232] = 2074, + [2233] = 2075, + [2234] = 2043, + [2235] = 2009, + [2236] = 2081, + [2237] = 2237, [2238] = 2238, [2239] = 2239, - [2240] = 2045, - [2241] = 2153, - [2242] = 2047, - [2243] = 2019, - [2244] = 2154, + [2240] = 2240, + [2241] = 2241, + [2242] = 2242, + [2243] = 2243, + [2244] = 2244, [2245] = 2245, - [2246] = 2195, - [2247] = 2201, + [2246] = 2243, + [2247] = 2247, [2248] = 2248, - [2249] = 2224, + [2249] = 2244, [2250] = 2250, - [2251] = 2215, - [2252] = 2252, + [2251] = 2251, + [2252] = 1967, [2253] = 2253, - [2254] = 2254, + [2254] = 2250, [2255] = 2255, - [2256] = 2256, + [2256] = 2240, [2257] = 2257, [2258] = 2258, [2259] = 2259, [2260] = 2260, [2261] = 2261, [2262] = 2262, - [2263] = 2261, + [2263] = 2263, [2264] = 2264, [2265] = 2265, - [2266] = 2266, + [2266] = 625, [2267] = 2267, [2268] = 2268, - [2269] = 2258, - [2270] = 2253, - [2271] = 2259, + [2269] = 2164, + [2270] = 2245, + [2271] = 2271, [2272] = 2272, [2273] = 2273, - [2274] = 2229, + [2274] = 2274, [2275] = 2275, [2276] = 2276, - [2277] = 2277, - [2278] = 2278, + [2277] = 1575, + [2278] = 1972, [2279] = 2279, - [2280] = 2280, + [2280] = 1951, [2281] = 2281, - [2282] = 2282, + [2282] = 1953, [2283] = 2283, - [2284] = 2280, - [2285] = 2285, - [2286] = 2286, - [2287] = 2286, - [2288] = 2273, - [2289] = 2255, - [2290] = 2266, - [2291] = 2278, - [2292] = 2282, - [2293] = 2293, - [2294] = 2285, - [2295] = 1001, - [2296] = 2296, - [2297] = 2297, - [2298] = 1979, + [2284] = 2247, + [2285] = 2248, + [2286] = 2189, + [2287] = 628, + [2288] = 2245, + [2289] = 629, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 2250, + [2294] = 2167, + [2295] = 2291, + [2296] = 2241, + [2297] = 2242, + [2298] = 2245, [2299] = 2299, [2300] = 2300, - [2301] = 2301, - [2302] = 2162, - [2303] = 2275, - [2304] = 2304, - [2305] = 2300, - [2306] = 2254, - [2307] = 2257, - [2308] = 1961, - [2309] = 2264, - [2310] = 2261, - [2311] = 2311, - [2312] = 2264, - [2313] = 2265, - [2314] = 2267, - [2315] = 2265, - [2316] = 2316, - [2317] = 2317, - [2318] = 2273, - [2319] = 2275, + [2301] = 2247, + [2302] = 2248, + [2303] = 2303, + [2304] = 2250, + [2305] = 2262, + [2306] = 2306, + [2307] = 2307, + [2308] = 2251, + [2309] = 2255, + [2310] = 2257, + [2311] = 2283, + [2312] = 2258, + [2313] = 2259, + [2314] = 2241, + [2315] = 2261, + [2316] = 2261, + [2317] = 2260, + [2318] = 2189, + [2319] = 2319, [2320] = 2320, - [2321] = 2276, - [2322] = 2277, - [2323] = 2002, - [2324] = 2280, - [2325] = 2325, - [2326] = 2326, - [2327] = 654, - [2328] = 2286, - [2329] = 2329, - [2330] = 2317, - [2331] = 2255, - [2332] = 2311, - [2333] = 2266, - [2334] = 2278, - [2335] = 2282, - [2336] = 1973, - [2337] = 1995, + [2321] = 2321, + [2322] = 2322, + [2323] = 2268, + [2324] = 2271, + [2325] = 2255, + [2326] = 2272, + [2327] = 2327, + [2328] = 2273, + [2329] = 2257, + [2330] = 2275, + [2331] = 2163, + [2332] = 2164, + [2333] = 2167, + [2334] = 2258, + [2335] = 2259, + [2336] = 2281, + [2337] = 2271, [2338] = 2338, - [2339] = 653, - [2340] = 2285, - [2341] = 2255, - [2342] = 1897, - [2343] = 2343, - [2344] = 2344, - [2345] = 2345, - [2346] = 2300, - [2347] = 2254, - [2348] = 2304, - [2349] = 2254, - [2350] = 2280, - [2351] = 2266, - [2352] = 2257, - [2353] = 2267, - [2354] = 2261, - [2355] = 1979, - [2356] = 2356, - [2357] = 2264, - [2358] = 2265, - [2359] = 2267, - [2360] = 2278, - [2361] = 2282, - [2362] = 2273, - [2363] = 2363, - [2364] = 2275, - [2365] = 2276, - [2366] = 2277, - [2367] = 1015, - [2368] = 2368, - [2369] = 2227, - [2370] = 2161, - [2371] = 2162, - [2372] = 2218, - [2373] = 2164, - [2374] = 2300, - [2375] = 1979, - [2376] = 2304, - [2377] = 2368, - [2378] = 2378, - [2379] = 2254, - [2380] = 1590, - [2381] = 2257, - [2382] = 2338, - [2383] = 2230, - [2384] = 2261, - [2385] = 2264, - [2386] = 2265, - [2387] = 2387, - [2388] = 2267, - [2389] = 2002, - [2390] = 2276, - [2391] = 2273, - [2392] = 2001, - [2393] = 2275, - [2394] = 2276, - [2395] = 2277, - [2396] = 2273, + [2339] = 2339, + [2340] = 1894, + [2341] = 2290, + [2342] = 642, + [2343] = 2292, + [2344] = 2290, + [2345] = 1984, + [2346] = 2241, + [2347] = 2242, + [2348] = 2261, + [2349] = 2245, + [2350] = 2142, + [2351] = 2247, + [2352] = 2248, + [2353] = 2250, + [2354] = 2153, + [2355] = 2255, + [2356] = 2272, + [2357] = 2257, + [2358] = 2258, + [2359] = 2259, + [2360] = 2273, + [2361] = 2361, + [2362] = 1010, + [2363] = 623, + [2364] = 2264, + [2365] = 2290, + [2366] = 2366, + [2367] = 2275, + [2368] = 2292, + [2369] = 2241, + [2370] = 2242, + [2371] = 2371, + [2372] = 2245, + [2373] = 2292, + [2374] = 2248, + [2375] = 2250, + [2376] = 1575, + [2377] = 2292, + [2378] = 2255, + [2379] = 2257, + [2380] = 2258, + [2381] = 2259, + [2382] = 1905, + [2383] = 1912, + [2384] = 1916, + [2385] = 2163, + [2386] = 2299, + [2387] = 2253, + [2388] = 2303, + [2389] = 2292, + [2390] = 2390, + [2391] = 2241, + [2392] = 2392, + [2393] = 2245, + [2394] = 2268, + [2395] = 2247, + [2396] = 2248, [2397] = 2397, - [2398] = 1921, - [2399] = 1942, - [2400] = 2256, - [2401] = 2275, - [2402] = 659, - [2403] = 2300, - [2404] = 2304, - [2405] = 2002, - [2406] = 2254, - [2407] = 2277, - [2408] = 2257, - [2409] = 2261, - [2410] = 2285, - [2411] = 2411, - [2412] = 2264, - [2413] = 2265, - [2414] = 2267, - [2415] = 2415, - [2416] = 2273, - [2417] = 2299, - [2418] = 2275, - [2419] = 2343, - [2420] = 2276, - [2421] = 2277, - [2422] = 2422, - [2423] = 2423, - [2424] = 2378, - [2425] = 2425, - [2426] = 2225, - [2427] = 656, - [2428] = 2304, - [2429] = 2300, - [2430] = 2304, - [2431] = 2257, - [2432] = 2432, - [2433] = 2254, - [2434] = 2257, - [2435] = 2261, - [2436] = 2436, - [2437] = 2387, - [2438] = 2264, - [2439] = 2265, - [2440] = 2267, - [2441] = 2441, - [2442] = 2442, - [2443] = 2273, - [2444] = 2275, - [2445] = 2276, - [2446] = 2277, - [2447] = 2276, - [2448] = 2448, - [2449] = 2449, - [2450] = 2267, - [2451] = 2276, - [2452] = 2277, - [2453] = 2216, - [2454] = 2217, - [2455] = 2161, - [2456] = 2267, - [2457] = 2300, - [2458] = 2276, - [2459] = 2277, - [2460] = 2338, - [2461] = 2162, - [2462] = 2277, - [2463] = 2300, - [2464] = 1617, - [2465] = 2465, + [2398] = 2250, + [2399] = 2255, + [2400] = 2257, + [2401] = 2258, + [2402] = 2259, + [2403] = 2255, + [2404] = 2404, + [2405] = 2253, + [2406] = 2406, + [2407] = 2292, + [2408] = 2408, + [2409] = 2242, + [2410] = 2322, + [2411] = 2189, + [2412] = 2292, + [2413] = 2241, + [2414] = 2170, + [2415] = 2245, + [2416] = 2268, + [2417] = 2247, + [2418] = 2248, + [2419] = 2419, + [2420] = 2250, + [2421] = 2421, + [2422] = 2255, + [2423] = 1008, + [2424] = 2257, + [2425] = 2258, + [2426] = 2259, + [2427] = 2427, + [2428] = 2173, + [2429] = 2429, + [2430] = 2250, + [2431] = 2258, + [2432] = 2259, + [2433] = 2290, + [2434] = 1984, + [2435] = 2250, + [2436] = 2258, + [2437] = 2259, + [2438] = 2257, + [2439] = 2439, + [2440] = 1984, + [2441] = 2164, + [2442] = 2241, + [2443] = 2443, + [2444] = 2271, + [2445] = 2272, + [2446] = 2273, + [2447] = 2281, + [2448] = 2421, + [2449] = 2408, + [2450] = 2275, + [2451] = 2279, + [2452] = 1938, + [2453] = 2338, + [2454] = 2239, + [2455] = 2320, + [2456] = 2456, + [2457] = 2244, + [2458] = 2322, + [2459] = 1586, + [2460] = 2274, + [2461] = 2461, + [2462] = 2327, + [2463] = 2408, + [2464] = 2279, + [2465] = 2243, [2466] = 2466, - [2467] = 2467, - [2468] = 2468, - [2469] = 2469, - [2470] = 2304, - [2471] = 2293, - [2472] = 2472, - [2473] = 2473, - [2474] = 2356, - [2475] = 2368, - [2476] = 2320, - [2477] = 2397, - [2478] = 2286, - [2479] = 2411, - [2480] = 2254, - [2481] = 2164, - [2482] = 2425, - [2483] = 2469, - [2484] = 2293, - [2485] = 2257, - [2486] = 1595, - [2487] = 1960, - [2488] = 2258, - [2489] = 2259, - [2490] = 2449, - [2491] = 2268, - [2492] = 2261, - [2493] = 2225, - [2494] = 2363, - [2495] = 2297, - [2496] = 2225, - [2497] = 1590, - [2498] = 2469, - [2499] = 2304, - [2500] = 2264, - [2501] = 2265, - [2502] = 2415, - [2503] = 2425, - [2504] = 650, - [2505] = 2267, - [2506] = 1590, - [2507] = 2468, - [2508] = 2423, - [2509] = 2329, - [2510] = 2262, - [2511] = 2279, - [2512] = 2467, + [2467] = 2258, + [2468] = 2259, + [2469] = 1967, + [2470] = 2470, + [2471] = 2247, + [2472] = 2281, + [2473] = 1575, + [2474] = 2300, + [2475] = 2220, + [2476] = 2339, + [2477] = 2238, + [2478] = 1967, + [2479] = 2248, + [2480] = 2404, + [2481] = 2456, + [2482] = 2461, + [2483] = 2483, + [2484] = 2174, + [2485] = 2274, + [2486] = 2242, + [2487] = 2466, + [2488] = 2290, + [2489] = 1576, + [2490] = 2406, + [2491] = 2319, + [2492] = 2247, + [2493] = 2493, + [2494] = 2494, + [2495] = 625, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, + [2504] = 2504, + [2505] = 2505, + [2506] = 2506, + [2507] = 2507, + [2508] = 2494, + [2509] = 2509, + [2510] = 629, + [2511] = 2511, + [2512] = 2512, [2513] = 2513, - [2514] = 2422, + [2514] = 2514, [2515] = 2515, - [2516] = 2516, - [2517] = 2517, - [2518] = 2515, - [2519] = 2049, + [2516] = 2497, + [2517] = 2499, + [2518] = 2518, + [2519] = 2519, [2520] = 2520, [2521] = 2521, - [2522] = 2522, - [2523] = 2436, - [2524] = 2524, - [2525] = 2049, + [2522] = 2063, + [2523] = 2494, + [2524] = 628, + [2525] = 2502, [2526] = 2526, - [2527] = 2527, - [2528] = 2528, + [2527] = 1586, + [2528] = 2509, [2529] = 2529, - [2530] = 656, - [2531] = 2531, + [2530] = 2530, + [2531] = 2502, [2532] = 2532, [2533] = 2533, - [2534] = 2531, + [2534] = 2526, [2535] = 2535, - [2536] = 2533, - [2537] = 2535, - [2538] = 2538, + [2536] = 2519, + [2537] = 1592, + [2538] = 2263, [2539] = 2539, [2540] = 2540, - [2541] = 2516, - [2542] = 2542, - [2543] = 2515, + [2541] = 2541, + [2542] = 2502, + [2543] = 2543, [2544] = 2544, [2545] = 2545, - [2546] = 2524, + [2546] = 2546, [2547] = 2547, - [2548] = 2538, - [2549] = 2049, - [2550] = 2550, - [2551] = 2551, - [2552] = 2552, - [2553] = 2553, - [2554] = 2554, - [2555] = 1617, - [2556] = 2524, - [2557] = 2557, + [2548] = 2063, + [2549] = 2549, + [2550] = 2509, + [2551] = 2545, + [2552] = 2497, + [2553] = 1587, + [2554] = 2063, + [2555] = 2540, + [2556] = 2556, + [2557] = 2237, [2558] = 2558, [2559] = 2559, - [2560] = 2547, - [2561] = 2561, + [2560] = 2560, + [2561] = 1592, [2562] = 2562, - [2563] = 2531, - [2564] = 2564, - [2565] = 2551, - [2566] = 2566, + [2563] = 2563, + [2564] = 2521, + [2565] = 2543, + [2566] = 2499, [2567] = 2567, - [2568] = 2568, - [2569] = 650, - [2570] = 2570, - [2571] = 2535, - [2572] = 2572, - [2573] = 2573, + [2568] = 623, + [2569] = 2569, + [2570] = 1588, + [2571] = 2571, + [2572] = 2361, + [2573] = 2558, [2574] = 2574, - [2575] = 2533, - [2576] = 2576, + [2575] = 2575, + [2576] = 1588, [2577] = 2577, [2578] = 2578, - [2579] = 2538, - [2580] = 2542, - [2581] = 2531, - [2582] = 2582, - [2583] = 2583, - [2584] = 2542, - [2585] = 2527, - [2586] = 2586, - [2587] = 2587, - [2588] = 2587, - [2589] = 2572, - [2590] = 2524, - [2591] = 2591, - [2592] = 2515, - [2593] = 659, - [2594] = 2533, + [2579] = 2509, + [2580] = 2559, + [2581] = 2519, + [2582] = 2539, + [2583] = 2497, + [2584] = 2584, + [2585] = 642, + [2586] = 2521, + [2587] = 2546, + [2588] = 2588, + [2589] = 2499, + [2590] = 2556, + [2591] = 2588, + [2592] = 1587, + [2593] = 2593, + [2594] = 2594, [2595] = 2595, - [2596] = 1628, - [2597] = 1628, + [2596] = 2596, + [2597] = 2597, [2598] = 2598, - [2599] = 1634, - [2600] = 2586, - [2601] = 1634, + [2599] = 2599, + [2600] = 2600, + [2601] = 2601, [2602] = 2602, - [2603] = 654, - [2604] = 2604, - [2605] = 653, - [2606] = 2432, - [2607] = 2553, + [2603] = 2603, + [2604] = 2597, + [2605] = 2605, + [2606] = 2597, + [2607] = 2607, [2608] = 2608, - [2609] = 2602, - [2610] = 2545, - [2611] = 1614, - [2612] = 1614, - [2613] = 2613, + [2609] = 2609, + [2610] = 2598, + [2611] = 2611, + [2612] = 2602, + [2613] = 2607, [2614] = 2614, [2615] = 2615, - [2616] = 2616, - [2617] = 2617, + [2616] = 2599, + [2617] = 2594, [2618] = 2618, - [2619] = 2619, - [2620] = 2620, + [2619] = 2603, + [2620] = 2603, [2621] = 2621, - [2622] = 2622, + [2622] = 2614, [2623] = 2623, [2624] = 2624, - [2625] = 2625, - [2626] = 2620, + [2625] = 2614, + [2626] = 2595, [2627] = 2627, - [2628] = 2628, + [2628] = 2594, [2629] = 2629, - [2630] = 2630, - [2631] = 2631, + [2630] = 2608, + [2631] = 2599, [2632] = 2632, - [2633] = 2616, - [2634] = 2634, - [2635] = 2628, - [2636] = 2636, - [2637] = 2623, + [2633] = 2633, + [2634] = 2618, + [2635] = 2635, + [2636] = 2598, + [2637] = 2637, [2638] = 2638, - [2639] = 2639, - [2640] = 2640, - [2641] = 2632, - [2642] = 2636, - [2643] = 2615, - [2644] = 2628, - [2645] = 2630, - [2646] = 2617, - [2647] = 2618, - [2648] = 2619, - [2649] = 2630, - [2650] = 2650, - [2651] = 2651, - [2652] = 2652, - [2653] = 2653, - [2654] = 2622, - [2655] = 2623, - [2656] = 2622, - [2657] = 2638, - [2658] = 2615, - [2659] = 2615, - [2660] = 2620, - [2661] = 2620, - [2662] = 2662, - [2663] = 2663, - [2664] = 2628, - [2665] = 2652, - [2666] = 2629, - [2667] = 2618, - [2668] = 2628, - [2669] = 2669, - [2670] = 2620, - [2671] = 2619, - [2672] = 2630, - [2673] = 2650, - [2674] = 2622, - [2675] = 2623, - [2676] = 2632, - [2677] = 2616, - [2678] = 2630, - [2679] = 2679, + [2639] = 2595, + [2640] = 2608, + [2641] = 2641, + [2642] = 2629, + [2643] = 2643, + [2644] = 2644, + [2645] = 2645, + [2646] = 2595, + [2647] = 2647, + [2648] = 2633, + [2649] = 2649, + [2650] = 2608, + [2651] = 2615, + [2652] = 2614, + [2653] = 2599, + [2654] = 2629, + [2655] = 2655, + [2656] = 2599, + [2657] = 2599, + [2658] = 2609, + [2659] = 2659, + [2660] = 2603, + [2661] = 2615, + [2662] = 2609, + [2663] = 2602, + [2664] = 2664, + [2665] = 2665, + [2666] = 2621, + [2667] = 2603, + [2668] = 2599, + [2669] = 2611, + [2670] = 2670, + [2671] = 2608, + [2672] = 2602, + [2673] = 2647, + [2674] = 2674, + [2675] = 2603, + [2676] = 2615, + [2677] = 2597, + [2678] = 2665, + [2679] = 2607, [2680] = 2680, [2681] = 2681, - [2682] = 2620, - [2683] = 2636, - [2684] = 2630, - [2685] = 2618, - [2686] = 2624, - [2687] = 2628, + [2682] = 2682, + [2683] = 2597, + [2684] = 2684, + [2685] = 2600, + [2686] = 2607, + [2687] = 2623, [2688] = 2688, - [2689] = 2629, - [2690] = 2622, - [2691] = 2615, - [2692] = 2650, - [2693] = 2651, - [2694] = 2650, - [2695] = 2629, - [2696] = 2620, - [2697] = 2697, + [2689] = 2689, + [2690] = 2690, + [2691] = 2670, + [2692] = 2608, + [2693] = 2608, + [2694] = 2608, + [2695] = 2597, + [2696] = 2597, + [2697] = 2598, [2698] = 2698, - [2699] = 2632, - [2700] = 2700, + [2699] = 2618, + [2700] = 2598, [2701] = 2701, - [2702] = 2702, - [2703] = 2616, - [2704] = 2615, - [2705] = 2679, - [2706] = 2706, - [2707] = 2707, - [2708] = 2636, - [2709] = 2709, - [2710] = 2710, - [2711] = 2711, - [2712] = 2623, - [2713] = 2652, - [2714] = 2714, - [2715] = 2636, - [2716] = 2716, - [2717] = 2716, - [2718] = 2652, - [2719] = 2652, - [2720] = 2720, - [2721] = 2721, - [2722] = 2629, - [2723] = 2618, - [2724] = 2618, - [2725] = 2619, - [2726] = 2638, - [2727] = 2710, + [2702] = 2614, + [2703] = 2609, + [2704] = 2704, + [2705] = 2611, + [2706] = 2602, + [2707] = 2614, + [2708] = 2708, + [2709] = 2615, + [2710] = 2618, + [2711] = 2614, + [2712] = 2595, + [2713] = 2594, + [2714] = 2680, + [2715] = 2603, + [2716] = 2689, + [2717] = 2615, + [2718] = 2701, + [2719] = 2614, + [2720] = 2594, + [2721] = 2598, + [2722] = 2615, + [2723] = 2597, + [2724] = 2595, + [2725] = 2602, + [2726] = 2708, + [2727] = 2727, [2728] = 2728, - [2729] = 2622, - [2730] = 2730, - [2731] = 2619, - [2732] = 2732, - [2733] = 2733, - [2734] = 2700, - [2735] = 2614, - [2736] = 2709, - [2737] = 2623, - [2738] = 2721, - [2739] = 2632, - [2740] = 2622, - [2741] = 2716, - [2742] = 2620, - [2743] = 2623, - [2744] = 2720, - [2745] = 2614, + [2729] = 2629, + [2730] = 2594, + [2731] = 2611, + [2732] = 2607, + [2733] = 2611, + [2734] = 2602, + [2735] = 2607, + [2736] = 2688, + [2737] = 2615, + [2738] = 2738, + [2739] = 2739, + [2740] = 2608, + [2741] = 2598, + [2742] = 2596, + [2743] = 2664, + [2744] = 2594, + [2745] = 2603, [2746] = 2746, - [2747] = 2747, - [2748] = 2616, - [2749] = 2628, - [2750] = 2638, - [2751] = 2620, - [2752] = 2622, - [2753] = 2616, - [2754] = 2620, - [2755] = 2623, - [2756] = 2756, - [2757] = 2680, - [2758] = 2663, - [2759] = 2629, - [2760] = 2702, + [2747] = 2609, + [2748] = 2701, + [2749] = 2607, + [2750] = 2602, + [2751] = 2751, + [2752] = 2751, + [2753] = 2689, + [2754] = 2727, + [2755] = 2688, + [2756] = 2633, + [2757] = 2632, + [2758] = 2688, + [2759] = 2607, + [2760] = 2760, [2761] = 2618, - [2762] = 2629, - [2763] = 2632, - [2764] = 2616, - [2765] = 2614, - [2766] = 2628, - [2767] = 2680, - [2768] = 2768, - [2769] = 2769, - [2770] = 2636, - [2771] = 2746, - [2772] = 2697, - [2773] = 2650, - [2774] = 2669, - [2775] = 2700, + [2762] = 2598, + [2763] = 2763, + [2764] = 2680, + [2765] = 2596, + [2766] = 2599, + [2767] = 2611, + [2768] = 2633, + [2769] = 2682, + [2770] = 2596, + [2771] = 2611, + [2772] = 2595, + [2773] = 2635, + [2774] = 2684, + [2775] = 2775, [2776] = 2629, - [2777] = 2711, - [2778] = 2615, - [2779] = 2619, - [2780] = 2636, - [2781] = 2630, - [2782] = 2636, - [2783] = 2709, - [2784] = 2707, - [2785] = 2619, - [2786] = 2630, - [2787] = 2721, - [2788] = 2632, - [2789] = 2632, - [2790] = 2615, - [2791] = 2616, - [2792] = 2769, - [2793] = 2680, - [2794] = 2698, - [2795] = 2795, - [2796] = 2716, - [2797] = 2688, - [2798] = 2798, - [2799] = 2618, - [2800] = 2714, - [2801] = 2681, - [2802] = 2701, - [2803] = 2803, - [2804] = 2795, - [2805] = 2701, - [2806] = 2798, - [2807] = 2619, - [2808] = 2614, + [2777] = 2601, + [2778] = 2645, + [2779] = 2690, + [2780] = 2704, + [2781] = 2728, + [2782] = 2637, + [2783] = 2594, + [2784] = 2644, + [2785] = 2637, + [2786] = 2608, + [2787] = 2595, + [2788] = 2611, +}; + +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym_expression, + sym_parameter, + sym_pattern, + sym_primary_expression, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym_expression] = {.index = 0, .length = 8}, + [sym_parameter] = {.index = 8, .length = 9}, + [sym_pattern] = {.index = 17, .length = 6}, + [sym_primary_expression] = {.index = 23, .length = 25}, +}; + +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym_as_pattern, + sym_boolean_operator, + sym_comparison_operator, + sym_conditional_expression, + sym_lambda, + sym_named_expression, + sym_not_operator, + sym_primary_expression, + [8] = + sym_default_parameter, + sym_dictionary_splat_pattern, + sym_identifier, + sym_keyword_separator, + sym_list_splat_pattern, + sym_positional_separator, + sym_tuple_pattern, + sym_typed_default_parameter, + sym_typed_parameter, + [17] = + sym_attribute, + sym_identifier, + sym_list_pattern, + sym_list_splat_pattern, + sym_subscript, + sym_tuple_pattern, + [23] = + sym_attribute, + sym_await, + sym_binary_operator, + sym_call, + sym_concatenated_string, + sym_dictionary, + sym_dictionary_comprehension, + sym_ellipsis, + sym_false, + sym_float, + sym_generator_expression, + sym_identifier, + sym_integer, + sym_list, + sym_list_comprehension, + sym_list_splat, + sym_none, + sym_parenthesized_expression, + sym_set, + sym_set_comprehension, + sym_string, + sym_subscript, + sym_true, + sym_tuple, + sym_unary_operator, }; -static TSCharacterRange sym_identifier_character_set_1[] = { +static const TSCharacterRange sym_identifier_character_set_1[] = { {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, @@ -5620,7 +5673,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, - {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, + {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, @@ -5630,7 +5683,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, - {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, @@ -5644,48 +5697,50 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, - {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, - {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, - {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, - {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, - {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, - {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, - {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, - {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, - {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, - {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, - {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, - {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, - {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, - {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, - {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, - {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, - {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, - {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, - {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, - {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, - {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, - {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, - {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, - {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, - {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, - {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, - {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, - {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, - {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, - {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, - {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, - {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, + {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, + {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, + {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, + {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, + {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, + {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, + {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, + {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, + {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, + {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, + {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, + {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, + {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, + {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, + {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, + {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, + {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, + {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, + {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, + {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, + {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, + {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, + {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, + {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, + {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, + {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, + {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, + {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, + {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -static TSCharacterRange sym_identifier_character_set_2[] = { +static const TSCharacterRange sym_identifier_character_set_2[] = { {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, - {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, + {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, @@ -5713,7 +5768,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, - {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, + {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, @@ -5724,7 +5779,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, - {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, + {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, @@ -5737,39 +5792,42 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, - {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, - {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, - {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, - {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, - {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, - {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, - {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, - {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, - {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, - {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, - {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, - {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, - {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, - {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, + {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, + {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, + {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, + {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, + {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, + {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, + {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, + {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, + {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, + {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, + {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, + {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, - {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, - {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, - {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, - {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, - {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, - {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, - {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, - {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, - {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, - {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, - {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, - {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, - {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, - {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, - {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, - {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, + {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, + {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, + {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, + {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, + {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, + {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, + {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, + {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, + {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, + {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, + {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, + {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, @@ -5783,498 +5841,528 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(55); - if (lookahead == '\r') SKIP(51); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(133); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); + if (eof) ADVANCE(56); + if (lookahead == '\r') SKIP(53); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(86); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(132); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(102); + if (lookahead == 'e') ADVANCE(157); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(51); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + lookahead == 0xfeff) SKIP(53); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(168); + if (lookahead == '\n') ADVANCE(161); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(130); + if (lookahead == '\n') ADVANCE(129); END_STATE(); case 3: if (lookahead == '\n') SKIP(3); - if (lookahead == '\r') ADVANCE(135); - if (lookahead == '#') ADVANCE(136); - if (lookahead == '\\') ADVANCE(134); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '}') ADVANCE(89); + if (lookahead == '\r') ADVANCE(134); + if (lookahead == '#') ADVANCE(135); + if (lookahead == '\\') ADVANCE(133); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '}') ADVANCE(90); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(135); - if (lookahead != 0) ADVANCE(136); + lookahead == 0xfeff) ADVANCE(134); + if (lookahead != 0) ADVANCE(135); END_STATE(); case 4: if (lookahead == '\r') SKIP(4); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '^') ADVANCE(102); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(4); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 5: if (lookahead == '\r') SKIP(5); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(91); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(101); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(87); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 6: if (lookahead == '\r') SKIP(6); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(21); - if (lookahead == '&') ADVANCE(22); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(91); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '/') ADVANCE(17); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(18); - if (lookahead == '=') ADVANCE(77); - if (lookahead == '>') ADVANCE(31); - if (lookahead == '@') ADVANCE(23); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(22); + if (lookahead == '&') ADVANCE(23); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '*') ADVANCE(66); + if (lookahead == '+') ADVANCE(92); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '/') ADVANCE(18); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(19); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(32); + if (lookahead == '@') ADVANCE(24); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(24); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(25); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '^') ADVANCE(25); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(26); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 7: if (lookahead == '\r') SKIP(7); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(92); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(93); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(89); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(102); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(90); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(7); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 8: if (lookahead == '\r') SKIP(8); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(92); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(93); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(87); + if (lookahead == '^') ADVANCE(102); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '|') ADVANCE(88); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(8); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 9: if (lookahead == '\r') SKIP(9); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(69); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '-') ADVANCE(31); + if (lookahead == ':') ADVANCE(70); if (lookahead == '\\') ADVANCE(10); - if (lookahead == 'e') ADVANCE(163); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(9); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); END_STATE(); case 10: if (lookahead == '\r') ADVANCE(1); if ((!eof && lookahead == 00) || - lookahead == '\n') ADVANCE(168); + lookahead == '\n') ADVANCE(161); END_STATE(); case 11: if (lookahead == '\r') SKIP(11); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '^') ADVANCE(102); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 12: if (lookahead == '\r') SKIP(12); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(91); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(101); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(87); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 13: if (lookahead == '\r') SKIP(13); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(57); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(58); if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(57); if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(102); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(90); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(13); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 14: if (lookahead == '\r') SKIP(14); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(93); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(91); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(94); if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(101); + if (lookahead == '|') ADVANCE(87); + if (lookahead == '}') ADVANCE(90); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(14); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 15: - if (lookahead == '.') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + if (lookahead == '\r') SKIP(15); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(91); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(94); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(101); + if (lookahead == '|') ADVANCE(87); + if (lookahead == '}') ADVANCE(90); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(15); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 16: - if (lookahead == '.') ADVANCE(129); + if (lookahead == '.') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); END_STATE(); case 17: - if (lookahead == '/') ADVANCE(27); - if (lookahead == '=') ADVANCE(119); + if (lookahead == '.') ADVANCE(128); END_STATE(); case 18: - if (lookahead == '<') ADVANCE(28); + if (lookahead == '/') ADVANCE(28); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 19: - if (lookahead == '=') ADVANCE(110); + if (lookahead == '<') ADVANCE(29); END_STATE(); case 20: if (lookahead == '=') ADVANCE(110); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(137); END_STATE(); case 21: - if (lookahead == '=') ADVANCE(122); + if (lookahead == '=') ADVANCE(110); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(126); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(120); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 24: - if (lookahead == '=') ADVANCE(127); + if (lookahead == '=') ADVANCE(119); END_STATE(); case 25: - if (lookahead == '=') ADVANCE(128); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 26: - if (lookahead == '=') ADVANCE(123); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 27: - if (lookahead == '=') ADVANCE(121); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 28: - if (lookahead == '=') ADVANCE(125); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 29: if (lookahead == '=') ADVANCE(124); END_STATE(); case 30: - if (lookahead == '>') ADVANCE(74); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 31: - if (lookahead == '>') ADVANCE(29); + if (lookahead == '>') ADVANCE(75); END_STATE(); case 32: - if (lookahead == '_') ADVANCE(38); - if (lookahead == '0' || - lookahead == '1') ADVANCE(142); + if (lookahead == '>') ADVANCE(30); END_STATE(); case 33: if (lookahead == '_') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(143); + if (lookahead == '0' || + lookahead == '1') ADVANCE(141); END_STATE(); case 34: - if (lookahead == '_') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + if (lookahead == '_') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); END_STATE(); case 35: - if (lookahead == '{') ADVANCE(50); + if (lookahead == '_') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); END_STATE(); case 36: - if (lookahead == '}') ADVANCE(130); - if (lookahead != 0) ADVANCE(36); + if (lookahead == '{') ADVANCE(52); END_STATE(); case 37: - if (lookahead == '+' || - lookahead == '-') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '}') ADVANCE(129); + if (lookahead != 0) ADVANCE(37); END_STATE(); case 38: - if (lookahead == '0' || - lookahead == '1') ADVANCE(142); + if (lookahead == '+' || + lookahead == '-') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); END_STATE(); case 39: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(143); + if (lookahead == '0' || + lookahead == '1') ADVANCE(141); END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); END_STATE(); case 42: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); END_STATE(); case 43: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); END_STATE(); case 44: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || @@ -6302,324 +6390,302 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); END_STATE(); case 50: - if (lookahead != 0 && - lookahead != '}') ADVANCE(36); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); case 51: - if (eof) ADVANCE(55); - if (lookahead == '\r') SKIP(51); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(51); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); END_STATE(); case 52: - if (eof) ADVANCE(55); - if (lookahead == '\r') SKIP(52); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(107); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(112); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(52); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (lookahead != 0 && + lookahead != '}') ADVANCE(37); END_STATE(); case 53: - if (eof) ADVANCE(55); + if (eof) ADVANCE(56); if (lookahead == '\r') SKIP(53); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(90); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '0') ADVANCE(139); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(86); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == 'e') ADVANCE(164); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(102); + if (lookahead == 'e') ADVANCE(157); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(53); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 54: - if (eof) ADVANCE(55); + if (eof) ADVANCE(56); if (lookahead == '\r') SKIP(54); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(90); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '0') ADVANCE(139); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(51); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(91); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == 'e') ADVANCE(165); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(81); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(87); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(54); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 55: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(56); + if (lookahead == '\r') SKIP(55); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(91); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '0') ADVANCE(138); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == 'e') ADVANCE(157); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '~') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(55); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 58: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 63: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(76); - if (lookahead == '=') ADVANCE(118); END_STATE(); case 64: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(75); + if (lookahead == '*') ADVANCE(77); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 65: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '=') ADVANCE(118); + if (lookahead == '*') ADVANCE(76); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 67: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(124); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 70: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(68); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_except); - if (lookahead == '*') ADVANCE(73); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(69); END_STATE(); case 72: ACCEPT_TOKEN(anon_sym_except); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == '*') ADVANCE(74); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_except_STAR); + ACCEPT_TOKEN(anon_sym_except); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_except_STAR); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 76: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(123); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 78: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(109); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(109); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 82: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '=') ADVANCE(120); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(119); END_STATE(); case 84: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(117); END_STATE(); case 85: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(117); - if (lookahead == '>') ADVANCE(74); + if (lookahead == '=') ADVANCE(116); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(75); END_STATE(); case 87: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(128); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 91: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(116); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '=') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(115); END_STATE(); case 93: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(96); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(97); END_STATE(); case 95: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(122); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 97: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '=') ADVANCE(121); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 99: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(126); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 101: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(127); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 103: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(125); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 106: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(102); + if (lookahead == '<') ADVANCE(104); if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + if (lookahead == '>') ADVANCE(114); END_STATE(); case 107: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(103); if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + if (lookahead == '>') ADVANCE(114); END_STATE(); case 108: ACCEPT_TOKEN(anon_sym_LT_EQ); @@ -6636,6 +6702,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 112: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(68); END_STATE(); case 113: ACCEPT_TOKEN(anon_sym_GT); @@ -6643,322 +6710,287 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(67); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(66); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_AT_EQ); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_AT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(sym_ellipsis); END_STATE(); case 129: - ACCEPT_TOKEN(sym_ellipsis); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 130: ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); END_STATE(); case 131: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); case 132: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); - END_STATE(); - case 133: ACCEPT_TOKEN(anon_sym_BSLASH); ADVANCE_MAP( - 0, 168, - '\n', 130, + 0, 161, + '\n', 129, '\r', 2, - 'N', 35, - 'U', 49, - 'u', 45, - 'x', 43, - '"', 130, - '\'', 130, - '\\', 130, - 'a', 130, - 'b', 130, - 'f', 130, - 'n', 130, - 'r', 130, - 't', 130, - 'v', 130, + 'N', 36, + 'U', 50, + 'u', 46, + 'x', 44, + '"', 129, + '\'', 129, + '\\', 129, + 'a', 129, + 'b', 129, + 'f', 129, + 'n', 129, + 'r', 129, + 't', 129, + 'v', 129, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); END_STATE(); - case 134: + case 133: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if ((!eof && lookahead == 00)) ADVANCE(136); - if (lookahead == '\r') ADVANCE(136); + if ((!eof && lookahead == 00)) ADVANCE(135); + if (lookahead == '\r') ADVANCE(135); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(136); + lookahead != '}') ADVANCE(135); END_STATE(); - case 135: + case 134: ACCEPT_TOKEN(aux_sym_format_specifier_token1); ADVANCE_MAP( - '\r', 135, - '#', 136, - '\\', 134, - '\t', 135, - 0x0b, 135, - '\f', 135, - ' ', 135, - 0x200b, 135, - 0x2060, 135, - 0xfeff, 135, + '\r', 134, + '#', 135, + '\\', 133, + '\t', 134, + 0x0b, 134, + '\f', 134, + ' ', 134, + 0x200b, 134, + 0x2060, 134, + 0xfeff, 134, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '{' && - lookahead != '}') ADVANCE(136); + lookahead != '}') ADVANCE(135); END_STATE(); - case 136: + case 135: ACCEPT_TOKEN(aux_sym_format_specifier_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(136); + lookahead != '}') ADVANCE(135); END_STATE(); - case 137: + case 136: ACCEPT_TOKEN(sym_type_conversion); END_STATE(); - case 138: + case 137: ACCEPT_TOKEN(sym_integer); END_STATE(); - case 139: + case 138: ACCEPT_TOKEN(sym_integer); ADVANCE_MAP( - '.', 148, - '_', 141, - 'B', 32, - 'b', 32, - 'E', 37, - 'e', 37, - 'O', 33, - 'o', 33, - 'X', 34, - 'x', 34, - 'J', 138, - 'L', 138, - 'j', 138, - 'l', 138, + '.', 147, + '_', 140, + 'B', 33, + 'b', 33, + 'E', 38, + 'e', 38, + 'O', 34, + 'o', 34, + 'X', 35, + 'x', 35, + 'J', 137, + 'L', 137, + 'j', 137, + 'l', 137, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); END_STATE(); - case 140: + case 139: ACCEPT_TOKEN(sym_integer); ADVANCE_MAP( - '.', 148, - '_', 141, - 'E', 37, - 'e', 37, - 'J', 138, - 'L', 138, - 'j', 138, - 'l', 138, + '.', 147, + '_', 140, + 'E', 38, + 'e', 38, + 'J', 137, + 'L', 137, + 'j', 137, + 'l', 137, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); END_STATE(); - case 141: + case 140: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(148); + if (lookahead == '.') ADVANCE(147); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); + lookahead == 'e') ADVANCE(38); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + lookahead == 'l') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); END_STATE(); - case 142: + case 141: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(38); + if (lookahead == '_') ADVANCE(39); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(138); + lookahead == 'l') ADVANCE(137); if (lookahead == '0' || - lookahead == '1') ADVANCE(142); + lookahead == '1') ADVANCE(141); END_STATE(); - case 143: + case 142: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(39); + if (lookahead == '_') ADVANCE(40); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(143); + lookahead == 'l') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); END_STATE(); - case 144: + case 143: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(42); + if (lookahead == '_') ADVANCE(43); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(138); + lookahead == 'l') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); + END_STATE(); + case 144: + ACCEPT_TOKEN(sym_float); END_STATE(); case 145: ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(147); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(38); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); END_STATE(); case 146: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(148); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); + lookahead == 'j') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); END_STATE(); case 147: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(149); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(38); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + lookahead == 'j') ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); END_STATE(); case 148: ACCEPT_TOKEN(sym_float); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); + lookahead == 'j') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); END_STATE(); case 149: - ACCEPT_TOKEN(sym_float); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(151); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 150: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '*') ADVANCE(73); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'c') ADVANCE(152); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 151: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(154); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'e') ADVANCE(153); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 152: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(155); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'e') ADVANCE(154); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 153: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(156); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'p') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 154: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(157); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'p') ADVANCE(156); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 155: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(158); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 't') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 156: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(159); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 't') ADVANCE(73); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 157: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(160); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'x') ADVANCE(149); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 158: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(161); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'x') ADVANCE(150); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(162); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 160: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(71); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 161: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 162: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(150); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 163: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(151); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 164: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(152); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 165: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(153); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 166: - ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 167: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(167); + lookahead != '\n') ADVANCE(160); END_STATE(); - case 168: + case 161: ACCEPT_TOKEN(sym_line_continuation); END_STATE(); default: @@ -7495,2820 +7527,3168 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 52, .external_lex_state = 2}, - [2] = {.lex_state = 52, .external_lex_state = 3}, - [3] = {.lex_state = 52, .external_lex_state = 3}, - [4] = {.lex_state = 52, .external_lex_state = 3}, - [5] = {.lex_state = 52, .external_lex_state = 3}, - [6] = {.lex_state = 52, .external_lex_state = 3}, - [7] = {.lex_state = 52, .external_lex_state = 3}, - [8] = {.lex_state = 52, .external_lex_state = 3}, - [9] = {.lex_state = 52, .external_lex_state = 3}, - [10] = {.lex_state = 52, .external_lex_state = 3}, - [11] = {.lex_state = 52, .external_lex_state = 3}, - [12] = {.lex_state = 52, .external_lex_state = 3}, - [13] = {.lex_state = 52, .external_lex_state = 3}, - [14] = {.lex_state = 52, .external_lex_state = 3}, - [15] = {.lex_state = 52, .external_lex_state = 3}, - [16] = {.lex_state = 52, .external_lex_state = 3}, - [17] = {.lex_state = 52, .external_lex_state = 3}, - [18] = {.lex_state = 52, .external_lex_state = 3}, - [19] = {.lex_state = 52, .external_lex_state = 3}, - [20] = {.lex_state = 52, .external_lex_state = 3}, - [21] = {.lex_state = 52, .external_lex_state = 3}, - [22] = {.lex_state = 52, .external_lex_state = 3}, - [23] = {.lex_state = 52, .external_lex_state = 3}, - [24] = {.lex_state = 52, .external_lex_state = 3}, - [25] = {.lex_state = 52, .external_lex_state = 3}, - [26] = {.lex_state = 52, .external_lex_state = 3}, - [27] = {.lex_state = 52, .external_lex_state = 3}, - [28] = {.lex_state = 52, .external_lex_state = 3}, - [29] = {.lex_state = 52, .external_lex_state = 3}, - [30] = {.lex_state = 52, .external_lex_state = 3}, - [31] = {.lex_state = 52, .external_lex_state = 3}, - [32] = {.lex_state = 52, .external_lex_state = 3}, - [33] = {.lex_state = 52, .external_lex_state = 3}, - [34] = {.lex_state = 52, .external_lex_state = 3}, - [35] = {.lex_state = 52, .external_lex_state = 3}, - [36] = {.lex_state = 52, .external_lex_state = 3}, - [37] = {.lex_state = 52, .external_lex_state = 3}, - [38] = {.lex_state = 52, .external_lex_state = 3}, - [39] = {.lex_state = 52, .external_lex_state = 3}, - [40] = {.lex_state = 52, .external_lex_state = 3}, - [41] = {.lex_state = 52, .external_lex_state = 3}, - [42] = {.lex_state = 52, .external_lex_state = 3}, - [43] = {.lex_state = 52, .external_lex_state = 3}, - [44] = {.lex_state = 52, .external_lex_state = 3}, - [45] = {.lex_state = 52, .external_lex_state = 3}, - [46] = {.lex_state = 52, .external_lex_state = 3}, - [47] = {.lex_state = 52, .external_lex_state = 3}, - [48] = {.lex_state = 52, .external_lex_state = 3}, - [49] = {.lex_state = 52, .external_lex_state = 3}, - [50] = {.lex_state = 52, .external_lex_state = 3}, - [51] = {.lex_state = 52, .external_lex_state = 3}, - [52] = {.lex_state = 52, .external_lex_state = 3}, - [53] = {.lex_state = 52, .external_lex_state = 3}, - [54] = {.lex_state = 52, .external_lex_state = 3}, - [55] = {.lex_state = 52, .external_lex_state = 3}, - [56] = {.lex_state = 52, .external_lex_state = 3}, - [57] = {.lex_state = 52, .external_lex_state = 3}, - [58] = {.lex_state = 52, .external_lex_state = 3}, - [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 = 3}, - [63] = {.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}, - [68] = {.lex_state = 52, .external_lex_state = 3}, - [69] = {.lex_state = 52, .external_lex_state = 3}, - [70] = {.lex_state = 52, .external_lex_state = 3}, - [71] = {.lex_state = 52, .external_lex_state = 3}, - [72] = {.lex_state = 52, .external_lex_state = 3}, - [73] = {.lex_state = 4, .external_lex_state = 4}, - [74] = {.lex_state = 4, .external_lex_state = 4}, - [75] = {.lex_state = 5, .external_lex_state = 5}, - [76] = {.lex_state = 5, .external_lex_state = 5}, - [77] = {.lex_state = 5, .external_lex_state = 5}, - [78] = {.lex_state = 5, .external_lex_state = 5}, - [79] = {.lex_state = 5, .external_lex_state = 5}, - [80] = {.lex_state = 5, .external_lex_state = 5}, - [81] = {.lex_state = 5, .external_lex_state = 5}, - [82] = {.lex_state = 5, .external_lex_state = 5}, - [83] = {.lex_state = 4, .external_lex_state = 4}, - [84] = {.lex_state = 4, .external_lex_state = 4}, - [85] = {.lex_state = 4, .external_lex_state = 4}, - [86] = {.lex_state = 4, .external_lex_state = 4}, - [87] = {.lex_state = 52, .external_lex_state = 5}, - [88] = {.lex_state = 52, .external_lex_state = 5}, - [89] = {.lex_state = 52, .external_lex_state = 5}, - [90] = {.lex_state = 52, .external_lex_state = 5}, - [91] = {.lex_state = 52, .external_lex_state = 5}, - [92] = {.lex_state = 52, .external_lex_state = 5}, - [93] = {.lex_state = 52, .external_lex_state = 5}, - [94] = {.lex_state = 52, .external_lex_state = 5}, - [95] = {.lex_state = 52, .external_lex_state = 5}, - [96] = {.lex_state = 52, .external_lex_state = 5}, - [97] = {.lex_state = 52, .external_lex_state = 5}, - [98] = {.lex_state = 52, .external_lex_state = 5}, - [99] = {.lex_state = 52, .external_lex_state = 5}, - [100] = {.lex_state = 52, .external_lex_state = 5}, - [101] = {.lex_state = 52, .external_lex_state = 5}, - [102] = {.lex_state = 52, .external_lex_state = 5}, - [103] = {.lex_state = 52, .external_lex_state = 5}, - [104] = {.lex_state = 52, .external_lex_state = 5}, - [105] = {.lex_state = 52, .external_lex_state = 5}, - [106] = {.lex_state = 52, .external_lex_state = 5}, - [107] = {.lex_state = 52, .external_lex_state = 5}, - [108] = {.lex_state = 52, .external_lex_state = 5}, - [109] = {.lex_state = 52, .external_lex_state = 5}, - [110] = {.lex_state = 52, .external_lex_state = 5}, - [111] = {.lex_state = 52, .external_lex_state = 5}, - [112] = {.lex_state = 52, .external_lex_state = 5}, - [113] = {.lex_state = 52, .external_lex_state = 5}, - [114] = {.lex_state = 52, .external_lex_state = 5}, - [115] = {.lex_state = 52, .external_lex_state = 5}, - [116] = {.lex_state = 52, .external_lex_state = 5}, - [117] = {.lex_state = 52, .external_lex_state = 5}, - [118] = {.lex_state = 52, .external_lex_state = 5}, - [119] = {.lex_state = 52, .external_lex_state = 5}, - [120] = {.lex_state = 52, .external_lex_state = 5}, - [121] = {.lex_state = 52, .external_lex_state = 5}, - [122] = {.lex_state = 52, .external_lex_state = 5}, - [123] = {.lex_state = 52, .external_lex_state = 5}, - [124] = {.lex_state = 52, .external_lex_state = 5}, - [125] = {.lex_state = 52, .external_lex_state = 5}, - [126] = {.lex_state = 52, .external_lex_state = 5}, - [127] = {.lex_state = 52, .external_lex_state = 5}, - [128] = {.lex_state = 52, .external_lex_state = 5}, - [129] = {.lex_state = 52, .external_lex_state = 5}, - [130] = {.lex_state = 52, .external_lex_state = 5}, - [131] = {.lex_state = 52, .external_lex_state = 5}, - [132] = {.lex_state = 52, .external_lex_state = 5}, - [133] = {.lex_state = 52, .external_lex_state = 5}, - [134] = {.lex_state = 52, .external_lex_state = 5}, - [135] = {.lex_state = 52, .external_lex_state = 5}, - [136] = {.lex_state = 52, .external_lex_state = 5}, - [137] = {.lex_state = 52, .external_lex_state = 4}, - [138] = {.lex_state = 52, .external_lex_state = 4}, - [139] = {.lex_state = 52, .external_lex_state = 4}, - [140] = {.lex_state = 52, .external_lex_state = 4}, - [141] = {.lex_state = 52, .external_lex_state = 4}, - [142] = {.lex_state = 52, .external_lex_state = 4}, - [143] = {.lex_state = 52, .external_lex_state = 4}, - [144] = {.lex_state = 52, .external_lex_state = 4}, - [145] = {.lex_state = 52, .external_lex_state = 4}, - [146] = {.lex_state = 52, .external_lex_state = 4}, - [147] = {.lex_state = 52, .external_lex_state = 4}, - [148] = {.lex_state = 52, .external_lex_state = 4}, - [149] = {.lex_state = 52, .external_lex_state = 4}, - [150] = {.lex_state = 52, .external_lex_state = 4}, - [151] = {.lex_state = 52, .external_lex_state = 4}, - [152] = {.lex_state = 52, .external_lex_state = 4}, - [153] = {.lex_state = 52, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 4}, - [155] = {.lex_state = 4, .external_lex_state = 4}, - [156] = {.lex_state = 11, .external_lex_state = 4}, - [157] = {.lex_state = 5, .external_lex_state = 4}, - [158] = {.lex_state = 5, .external_lex_state = 6}, - [159] = {.lex_state = 12, .external_lex_state = 4}, - [160] = {.lex_state = 12, .external_lex_state = 6}, - [161] = {.lex_state = 12, .external_lex_state = 4}, - [162] = {.lex_state = 5, .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 = 5, .external_lex_state = 8}, - [168] = {.lex_state = 12, .external_lex_state = 8}, - [169] = {.lex_state = 5, .external_lex_state = 8}, - [170] = {.lex_state = 5, .external_lex_state = 7}, - [171] = {.lex_state = 12, .external_lex_state = 6}, - [172] = {.lex_state = 5, .external_lex_state = 8}, - [173] = {.lex_state = 12, .external_lex_state = 2}, - [174] = {.lex_state = 5, .external_lex_state = 8}, - [175] = {.lex_state = 5, .external_lex_state = 8}, - [176] = {.lex_state = 12, .external_lex_state = 7}, - [177] = {.lex_state = 5, .external_lex_state = 7}, - [178] = {.lex_state = 12, .external_lex_state = 2}, - [179] = {.lex_state = 5, .external_lex_state = 8}, - [180] = {.lex_state = 11, .external_lex_state = 4}, - [181] = {.lex_state = 12, .external_lex_state = 6}, - [182] = {.lex_state = 12, .external_lex_state = 7}, - [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 = 7}, - [187] = {.lex_state = 11, .external_lex_state = 2}, - [188] = {.lex_state = 11, .external_lex_state = 2}, - [189] = {.lex_state = 5, .external_lex_state = 7}, - [190] = {.lex_state = 5, .external_lex_state = 6}, - [191] = {.lex_state = 52, .external_lex_state = 8}, - [192] = {.lex_state = 52, .external_lex_state = 7}, - [193] = {.lex_state = 5, .external_lex_state = 6}, - [194] = {.lex_state = 5, .external_lex_state = 6}, - [195] = {.lex_state = 52, .external_lex_state = 8}, - [196] = {.lex_state = 52, .external_lex_state = 7}, - [197] = {.lex_state = 5, .external_lex_state = 6}, - [198] = {.lex_state = 52, .external_lex_state = 8}, - [199] = {.lex_state = 52, .external_lex_state = 8}, - [200] = {.lex_state = 52, .external_lex_state = 8}, - [201] = {.lex_state = 52, .external_lex_state = 7}, - [202] = {.lex_state = 5, .external_lex_state = 6}, - [203] = {.lex_state = 52, .external_lex_state = 8}, - [204] = {.lex_state = 52, .external_lex_state = 7}, - [205] = {.lex_state = 5, .external_lex_state = 6}, - [206] = {.lex_state = 52, .external_lex_state = 7}, - [207] = {.lex_state = 52, .external_lex_state = 8}, - [208] = {.lex_state = 52, .external_lex_state = 7}, - [209] = {.lex_state = 5, .external_lex_state = 6}, - [210] = {.lex_state = 52, .external_lex_state = 8}, - [211] = {.lex_state = 52, .external_lex_state = 8}, - [212] = {.lex_state = 52, .external_lex_state = 2}, - [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 = 52, .external_lex_state = 7}, - [217] = {.lex_state = 52, .external_lex_state = 2}, - [218] = {.lex_state = 52, .external_lex_state = 2}, - [219] = {.lex_state = 52, .external_lex_state = 8}, - [220] = {.lex_state = 52, .external_lex_state = 7}, - [221] = {.lex_state = 52, .external_lex_state = 7}, - [222] = {.lex_state = 52, .external_lex_state = 7}, - [223] = {.lex_state = 6, .external_lex_state = 4}, - [224] = {.lex_state = 6, .external_lex_state = 4}, - [225] = {.lex_state = 52, .external_lex_state = 2}, - [226] = {.lex_state = 5, .external_lex_state = 7}, - [227] = {.lex_state = 5, .external_lex_state = 7}, - [228] = {.lex_state = 5, .external_lex_state = 7}, - [229] = {.lex_state = 5, .external_lex_state = 7}, - [230] = {.lex_state = 5, .external_lex_state = 7}, - [231] = {.lex_state = 5, .external_lex_state = 7}, - [232] = {.lex_state = 52, .external_lex_state = 2}, - [233] = {.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}, - [239] = {.lex_state = 52, .external_lex_state = 8}, - [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 = 2}, - [244] = {.lex_state = 5, .external_lex_state = 8}, - [245] = {.lex_state = 52, .external_lex_state = 6}, - [246] = {.lex_state = 5, .external_lex_state = 8}, - [247] = {.lex_state = 5, .external_lex_state = 8}, - [248] = {.lex_state = 5, .external_lex_state = 2}, - [249] = {.lex_state = 6, .external_lex_state = 2}, - [250] = {.lex_state = 5, .external_lex_state = 8}, - [251] = {.lex_state = 5, .external_lex_state = 2}, - [252] = {.lex_state = 5, .external_lex_state = 8}, - [253] = {.lex_state = 5, .external_lex_state = 2}, - [254] = {.lex_state = 5, .external_lex_state = 2}, - [255] = {.lex_state = 5, .external_lex_state = 2}, - [256] = {.lex_state = 5, .external_lex_state = 8}, - [257] = {.lex_state = 5, .external_lex_state = 2}, - [258] = {.lex_state = 5, .external_lex_state = 2}, - [259] = {.lex_state = 5, .external_lex_state = 8}, - [260] = {.lex_state = 5, .external_lex_state = 2}, - [261] = {.lex_state = 5, .external_lex_state = 2}, - [262] = {.lex_state = 5, .external_lex_state = 8}, - [263] = {.lex_state = 5, .external_lex_state = 2}, - [264] = {.lex_state = 5, .external_lex_state = 8}, - [265] = {.lex_state = 5, .external_lex_state = 2}, - [266] = {.lex_state = 5, .external_lex_state = 2}, - [267] = {.lex_state = 5, .external_lex_state = 2}, - [268] = {.lex_state = 6, .external_lex_state = 2}, - [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 = 5, .external_lex_state = 2}, - [273] = {.lex_state = 52, .external_lex_state = 7}, - [274] = {.lex_state = 52, .external_lex_state = 8}, - [275] = {.lex_state = 5, .external_lex_state = 8}, - [276] = {.lex_state = 52, .external_lex_state = 7}, - [277] = {.lex_state = 52, .external_lex_state = 8}, - [278] = {.lex_state = 5, .external_lex_state = 8}, - [279] = {.lex_state = 5, .external_lex_state = 8}, - [280] = {.lex_state = 5, .external_lex_state = 8}, - [281] = {.lex_state = 5, .external_lex_state = 8}, - [282] = {.lex_state = 5, .external_lex_state = 8}, - [283] = {.lex_state = 5, .external_lex_state = 8}, - [284] = {.lex_state = 52, .external_lex_state = 8}, - [285] = {.lex_state = 52, .external_lex_state = 7}, - [286] = {.lex_state = 52, .external_lex_state = 8}, - [287] = {.lex_state = 5, .external_lex_state = 8}, - [288] = {.lex_state = 5, .external_lex_state = 8}, - [289] = {.lex_state = 5, .external_lex_state = 8}, - [290] = {.lex_state = 5, .external_lex_state = 8}, - [291] = {.lex_state = 5, .external_lex_state = 8}, - [292] = {.lex_state = 5, .external_lex_state = 8}, - [293] = {.lex_state = 5, .external_lex_state = 8}, - [294] = {.lex_state = 52, .external_lex_state = 7}, - [295] = {.lex_state = 52, .external_lex_state = 8}, - [296] = {.lex_state = 52, .external_lex_state = 8}, - [297] = {.lex_state = 52, .external_lex_state = 7}, - [298] = {.lex_state = 5, .external_lex_state = 8}, - [299] = {.lex_state = 5, .external_lex_state = 8}, - [300] = {.lex_state = 5, .external_lex_state = 8}, - [301] = {.lex_state = 5, .external_lex_state = 8}, - [302] = {.lex_state = 5, .external_lex_state = 8}, - [303] = {.lex_state = 5, .external_lex_state = 8}, - [304] = {.lex_state = 5, .external_lex_state = 8}, - [305] = {.lex_state = 52, .external_lex_state = 8}, - [306] = {.lex_state = 52, .external_lex_state = 7}, - [307] = {.lex_state = 52, .external_lex_state = 8}, - [308] = {.lex_state = 52, .external_lex_state = 7}, - [309] = {.lex_state = 52, .external_lex_state = 8}, - [310] = {.lex_state = 52, .external_lex_state = 8}, - [311] = {.lex_state = 5, .external_lex_state = 8}, - [312] = {.lex_state = 5, .external_lex_state = 8}, - [313] = {.lex_state = 5, .external_lex_state = 8}, - [314] = {.lex_state = 5, .external_lex_state = 8}, - [315] = {.lex_state = 52, .external_lex_state = 7}, - [316] = {.lex_state = 52, .external_lex_state = 8}, - [317] = {.lex_state = 52, .external_lex_state = 8}, - [318] = {.lex_state = 5, .external_lex_state = 8}, - [319] = {.lex_state = 5, .external_lex_state = 8}, - [320] = {.lex_state = 52, .external_lex_state = 8}, - [321] = {.lex_state = 5, .external_lex_state = 8}, - [322] = {.lex_state = 5, .external_lex_state = 8}, - [323] = {.lex_state = 5, .external_lex_state = 8}, - [324] = {.lex_state = 5, .external_lex_state = 8}, - [325] = {.lex_state = 52, .external_lex_state = 8}, - [326] = {.lex_state = 5, .external_lex_state = 8}, - [327] = {.lex_state = 52, .external_lex_state = 7}, - [328] = {.lex_state = 52, .external_lex_state = 8}, - [329] = {.lex_state = 52, .external_lex_state = 8}, - [330] = {.lex_state = 52, .external_lex_state = 8}, - [331] = {.lex_state = 52, .external_lex_state = 6}, - [332] = {.lex_state = 52, .external_lex_state = 7}, - [333] = {.lex_state = 52, .external_lex_state = 6}, - [334] = {.lex_state = 52, .external_lex_state = 8}, - [335] = {.lex_state = 5, .external_lex_state = 2}, - [336] = {.lex_state = 52, .external_lex_state = 6}, - [337] = {.lex_state = 52, .external_lex_state = 6}, - [338] = {.lex_state = 52, .external_lex_state = 8}, - [339] = {.lex_state = 52, .external_lex_state = 6}, - [340] = {.lex_state = 52, .external_lex_state = 6}, - [341] = {.lex_state = 52, .external_lex_state = 7}, - [342] = {.lex_state = 52, .external_lex_state = 8}, - [343] = {.lex_state = 52, .external_lex_state = 7}, - [344] = {.lex_state = 52, .external_lex_state = 7}, - [345] = {.lex_state = 52, .external_lex_state = 7}, - [346] = {.lex_state = 52, .external_lex_state = 6}, - [347] = {.lex_state = 12, .external_lex_state = 6}, - [348] = {.lex_state = 52, .external_lex_state = 6}, - [349] = {.lex_state = 52, .external_lex_state = 2}, - [350] = {.lex_state = 52, .external_lex_state = 4}, - [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}, - [355] = {.lex_state = 5, .external_lex_state = 6}, - [356] = {.lex_state = 5, .external_lex_state = 6}, - [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}, - [361] = {.lex_state = 5, .external_lex_state = 6}, - [362] = {.lex_state = 52, .external_lex_state = 4}, - [363] = {.lex_state = 52, .external_lex_state = 7}, - [364] = {.lex_state = 52, .external_lex_state = 2}, - [365] = {.lex_state = 5, .external_lex_state = 6}, - [366] = {.lex_state = 5, .external_lex_state = 6}, - [367] = {.lex_state = 52, .external_lex_state = 8}, - [368] = {.lex_state = 5, .external_lex_state = 6}, - [369] = {.lex_state = 5, .external_lex_state = 6}, - [370] = {.lex_state = 5, .external_lex_state = 6}, - [371] = {.lex_state = 52, .external_lex_state = 2}, - [372] = {.lex_state = 12, .external_lex_state = 8}, - [373] = {.lex_state = 52, .external_lex_state = 7}, - [374] = {.lex_state = 52, .external_lex_state = 7}, - [375] = {.lex_state = 52, .external_lex_state = 7}, - [376] = {.lex_state = 52, .external_lex_state = 4}, - [377] = {.lex_state = 52, .external_lex_state = 7}, - [378] = {.lex_state = 52, .external_lex_state = 7}, - [379] = {.lex_state = 52, .external_lex_state = 7}, - [380] = {.lex_state = 52, .external_lex_state = 4}, - [381] = {.lex_state = 52, .external_lex_state = 7}, - [382] = {.lex_state = 52, .external_lex_state = 7}, - [383] = {.lex_state = 52, .external_lex_state = 7}, - [384] = {.lex_state = 52, .external_lex_state = 7}, - [385] = {.lex_state = 52, .external_lex_state = 7}, - [386] = {.lex_state = 52, .external_lex_state = 7}, - [387] = {.lex_state = 52, .external_lex_state = 7}, - [388] = {.lex_state = 52, .external_lex_state = 7}, - [389] = {.lex_state = 52, .external_lex_state = 7}, - [390] = {.lex_state = 52, .external_lex_state = 7}, - [391] = {.lex_state = 52, .external_lex_state = 7}, - [392] = {.lex_state = 52, .external_lex_state = 7}, - [393] = {.lex_state = 52, .external_lex_state = 7}, - [394] = {.lex_state = 52, .external_lex_state = 7}, - [395] = {.lex_state = 52, .external_lex_state = 7}, - [396] = {.lex_state = 52, .external_lex_state = 7}, - [397] = {.lex_state = 52, .external_lex_state = 4}, - [398] = {.lex_state = 52, .external_lex_state = 7}, - [399] = {.lex_state = 52, .external_lex_state = 7}, - [400] = {.lex_state = 52, .external_lex_state = 7}, - [401] = {.lex_state = 52, .external_lex_state = 7}, - [402] = {.lex_state = 52, .external_lex_state = 7}, - [403] = {.lex_state = 5, .external_lex_state = 2}, - [404] = {.lex_state = 52, .external_lex_state = 7}, - [405] = {.lex_state = 52, .external_lex_state = 7}, - [406] = {.lex_state = 52, .external_lex_state = 7}, - [407] = {.lex_state = 12, .external_lex_state = 8}, - [408] = {.lex_state = 52, .external_lex_state = 7}, - [409] = {.lex_state = 52, .external_lex_state = 7}, - [410] = {.lex_state = 52, .external_lex_state = 2}, - [411] = {.lex_state = 52, .external_lex_state = 4}, - [412] = {.lex_state = 52, .external_lex_state = 7}, - [413] = {.lex_state = 52, .external_lex_state = 8}, - [414] = {.lex_state = 52, .external_lex_state = 2}, - [415] = {.lex_state = 52, .external_lex_state = 8}, - [416] = {.lex_state = 12, .external_lex_state = 2}, - [417] = {.lex_state = 5, .external_lex_state = 7}, - [418] = {.lex_state = 52, .external_lex_state = 7}, - [419] = {.lex_state = 52, .external_lex_state = 7}, - [420] = {.lex_state = 52, .external_lex_state = 8}, - [421] = {.lex_state = 52, .external_lex_state = 2}, - [422] = {.lex_state = 52, .external_lex_state = 7}, - [423] = {.lex_state = 52, .external_lex_state = 2}, - [424] = {.lex_state = 52, .external_lex_state = 2}, - [425] = {.lex_state = 52, .external_lex_state = 2}, - [426] = {.lex_state = 52, .external_lex_state = 4}, - [427] = {.lex_state = 52, .external_lex_state = 4}, - [428] = {.lex_state = 52, .external_lex_state = 2}, - [429] = {.lex_state = 52, .external_lex_state = 2}, - [430] = {.lex_state = 52, .external_lex_state = 2}, - [431] = {.lex_state = 52, .external_lex_state = 7}, - [432] = {.lex_state = 52, .external_lex_state = 2}, - [433] = {.lex_state = 52, .external_lex_state = 2}, - [434] = {.lex_state = 52, .external_lex_state = 2}, - [435] = {.lex_state = 52, .external_lex_state = 2}, - [436] = {.lex_state = 12, .external_lex_state = 2}, - [437] = {.lex_state = 52, .external_lex_state = 2}, - [438] = {.lex_state = 52, .external_lex_state = 2}, - [439] = {.lex_state = 5, .external_lex_state = 2}, - [440] = {.lex_state = 52, .external_lex_state = 4}, - [441] = {.lex_state = 52, .external_lex_state = 2}, - [442] = {.lex_state = 52, .external_lex_state = 2}, - [443] = {.lex_state = 52, .external_lex_state = 2}, - [444] = {.lex_state = 52, .external_lex_state = 2}, - [445] = {.lex_state = 52, .external_lex_state = 2}, - [446] = {.lex_state = 52, .external_lex_state = 4}, - [447] = {.lex_state = 52, .external_lex_state = 4}, - [448] = {.lex_state = 52, .external_lex_state = 2}, - [449] = {.lex_state = 5, .external_lex_state = 8}, - [450] = {.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 = 2}, - [455] = {.lex_state = 52, .external_lex_state = 2}, - [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 = 52, .external_lex_state = 2}, - [461] = {.lex_state = 52, .external_lex_state = 2}, - [462] = {.lex_state = 7, .external_lex_state = 9}, - [463] = {.lex_state = 52, .external_lex_state = 2}, - [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 = 52, .external_lex_state = 2}, - [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 = 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 = 7, .external_lex_state = 4}, - [477] = {.lex_state = 7, .external_lex_state = 9}, - [478] = {.lex_state = 52, .external_lex_state = 2}, - [479] = {.lex_state = 52, .external_lex_state = 2}, - [480] = {.lex_state = 52, .external_lex_state = 2}, - [481] = {.lex_state = 52, .external_lex_state = 2}, - [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}, - [487] = {.lex_state = 52, .external_lex_state = 2}, - [488] = {.lex_state = 52, .external_lex_state = 2}, - [489] = {.lex_state = 52, .external_lex_state = 2}, - [490] = {.lex_state = 52, .external_lex_state = 2}, - [491] = {.lex_state = 52, .external_lex_state = 2}, - [492] = {.lex_state = 52, .external_lex_state = 2}, - [493] = {.lex_state = 52, .external_lex_state = 2}, - [494] = {.lex_state = 52, .external_lex_state = 2}, - [495] = {.lex_state = 53, .external_lex_state = 10}, - [496] = {.lex_state = 52, .external_lex_state = 2}, - [497] = {.lex_state = 52, .external_lex_state = 2}, - [498] = {.lex_state = 52, .external_lex_state = 2}, - [499] = {.lex_state = 52, .external_lex_state = 2}, - [500] = {.lex_state = 52, .external_lex_state = 2}, - [501] = {.lex_state = 52, .external_lex_state = 2}, - [502] = {.lex_state = 52, .external_lex_state = 2}, - [503] = {.lex_state = 54, .external_lex_state = 2}, - [504] = {.lex_state = 52, .external_lex_state = 2}, - [505] = {.lex_state = 52, .external_lex_state = 2}, - [506] = {.lex_state = 52, .external_lex_state = 2}, - [507] = {.lex_state = 52, .external_lex_state = 2}, - [508] = {.lex_state = 52, .external_lex_state = 2}, - [509] = {.lex_state = 52, .external_lex_state = 2}, - [510] = {.lex_state = 52, .external_lex_state = 2}, - [511] = {.lex_state = 52, .external_lex_state = 2}, - [512] = {.lex_state = 52, .external_lex_state = 2}, - [513] = {.lex_state = 52, .external_lex_state = 2}, - [514] = {.lex_state = 52, .external_lex_state = 2}, - [515] = {.lex_state = 52, .external_lex_state = 2}, - [516] = {.lex_state = 52, .external_lex_state = 2}, - [517] = {.lex_state = 52, .external_lex_state = 2}, - [518] = {.lex_state = 52, .external_lex_state = 2}, - [519] = {.lex_state = 52, .external_lex_state = 2}, - [520] = {.lex_state = 52, .external_lex_state = 2}, - [521] = {.lex_state = 52, .external_lex_state = 2}, - [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 = 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}, - [530] = {.lex_state = 52, .external_lex_state = 2}, - [531] = {.lex_state = 52, .external_lex_state = 2}, - [532] = {.lex_state = 52, .external_lex_state = 2}, - [533] = {.lex_state = 52, .external_lex_state = 2}, - [534] = {.lex_state = 52, .external_lex_state = 2}, - [535] = {.lex_state = 52, .external_lex_state = 2}, - [536] = {.lex_state = 52, .external_lex_state = 2}, - [537] = {.lex_state = 52, .external_lex_state = 2}, - [538] = {.lex_state = 52, .external_lex_state = 2}, - [539] = {.lex_state = 52, .external_lex_state = 2}, - [540] = {.lex_state = 52, .external_lex_state = 2}, - [541] = {.lex_state = 52, .external_lex_state = 2}, - [542] = {.lex_state = 52, .external_lex_state = 2}, - [543] = {.lex_state = 52, .external_lex_state = 2}, - [544] = {.lex_state = 52, .external_lex_state = 2}, - [545] = {.lex_state = 52, .external_lex_state = 2}, - [546] = {.lex_state = 52, .external_lex_state = 2}, - [547] = {.lex_state = 52, .external_lex_state = 2}, - [548] = {.lex_state = 52, .external_lex_state = 2}, - [549] = {.lex_state = 52, .external_lex_state = 2}, - [550] = {.lex_state = 52, .external_lex_state = 2}, - [551] = {.lex_state = 52, .external_lex_state = 2}, - [552] = {.lex_state = 52, .external_lex_state = 2}, - [553] = {.lex_state = 52, .external_lex_state = 2}, - [554] = {.lex_state = 52, .external_lex_state = 2}, - [555] = {.lex_state = 52, .external_lex_state = 2}, - [556] = {.lex_state = 52, .external_lex_state = 2}, - [557] = {.lex_state = 52, .external_lex_state = 2}, - [558] = {.lex_state = 52, .external_lex_state = 2}, - [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}, - [564] = {.lex_state = 52, .external_lex_state = 2}, - [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 = 52, .external_lex_state = 2}, - [572] = {.lex_state = 53, .external_lex_state = 10}, - [573] = {.lex_state = 54, .external_lex_state = 2}, - [574] = {.lex_state = 52, .external_lex_state = 2}, - [575] = {.lex_state = 52, .external_lex_state = 2}, - [576] = {.lex_state = 52, .external_lex_state = 2}, - [577] = {.lex_state = 52, .external_lex_state = 2}, - [578] = {.lex_state = 52, .external_lex_state = 2}, - [579] = {.lex_state = 52, .external_lex_state = 2}, - [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 = 52, .external_lex_state = 2}, - [584] = {.lex_state = 52, .external_lex_state = 2}, - [585] = {.lex_state = 52, .external_lex_state = 2}, - [586] = {.lex_state = 52, .external_lex_state = 2}, - [587] = {.lex_state = 52, .external_lex_state = 2}, - [588] = {.lex_state = 53, .external_lex_state = 11}, - [589] = {.lex_state = 54, .external_lex_state = 3}, - [590] = {.lex_state = 52, .external_lex_state = 2}, - [591] = {.lex_state = 52, .external_lex_state = 2}, - [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}, - [596] = {.lex_state = 52, .external_lex_state = 2}, - [597] = {.lex_state = 52, .external_lex_state = 2}, - [598] = {.lex_state = 52, .external_lex_state = 2}, - [599] = {.lex_state = 52, .external_lex_state = 2}, - [600] = {.lex_state = 52, .external_lex_state = 2}, - [601] = {.lex_state = 52, .external_lex_state = 2}, - [602] = {.lex_state = 52, .external_lex_state = 2}, - [603] = {.lex_state = 52, .external_lex_state = 2}, - [604] = {.lex_state = 52, .external_lex_state = 2}, - [605] = {.lex_state = 52, .external_lex_state = 2}, - [606] = {.lex_state = 52, .external_lex_state = 2}, - [607] = {.lex_state = 53, .external_lex_state = 11}, - [608] = {.lex_state = 54, .external_lex_state = 3}, - [609] = {.lex_state = 52, .external_lex_state = 2}, - [610] = {.lex_state = 52, .external_lex_state = 2}, - [611] = {.lex_state = 7, .external_lex_state = 9}, - [612] = {.lex_state = 7, .external_lex_state = 9}, - [613] = {.lex_state = 54, .external_lex_state = 2}, - [614] = {.lex_state = 52, .external_lex_state = 3}, - [615] = {.lex_state = 52, .external_lex_state = 2}, - [616] = {.lex_state = 7, .external_lex_state = 9}, - [617] = {.lex_state = 7, .external_lex_state = 9}, - [618] = {.lex_state = 52, .external_lex_state = 3}, - [619] = {.lex_state = 52, .external_lex_state = 3}, - [620] = {.lex_state = 52, .external_lex_state = 3}, + [1] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [7] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [8] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [9] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [10] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [11] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [12] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [13] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [14] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [15] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [16] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, + [17] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [18] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [19] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [20] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [21] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [22] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [23] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [24] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [25] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [26] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [27] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [28] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [29] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [30] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [31] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [32] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [33] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [34] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [35] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [36] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [37] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [38] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [39] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [40] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [41] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [42] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [43] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [44] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [45] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [46] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [47] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, + [48] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [49] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [50] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [51] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [52] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [53] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [54] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [55] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [56] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [57] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [58] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [59] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [60] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [61] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [62] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [63] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [64] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [65] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, + [66] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [67] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, + [68] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [69] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [70] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [71] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [72] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [73] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [74] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [75] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [76] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [77] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [78] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [79] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [80] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [81] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [82] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [83] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [84] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [85] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [86] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [87] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [88] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [89] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [90] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [91] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [92] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [93] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [94] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [95] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [96] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 3}, + [97] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [98] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [99] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [100] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [101] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [102] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [103] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [104] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [105] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [106] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [107] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [108] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [109] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [110] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [111] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [112] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [113] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [114] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [115] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [116] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [117] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [118] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [119] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [120] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [121] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [122] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [123] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [124] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [125] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [126] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [127] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [128] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [129] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [130] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [131] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [132] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [133] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [134] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 3}, + [135] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [136] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [137] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, + [138] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, + [139] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, + [140] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, + [141] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [142] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [143] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [144] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [145] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [146] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [147] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [148] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [149] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [150] = {.lex_state = 11, .external_lex_state = 4, .reserved_word_set_id = 4}, + [151] = {.lex_state = 5, .external_lex_state = 4, .reserved_word_set_id = 5}, + [152] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 5}, + [153] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 4}, + [154] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 5}, + [155] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [156] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, + [157] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 7}, + [158] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [159] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, + [160] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, + [161] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, + [162] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 4}, + [163] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 6}, + [164] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, + [165] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 4}, + [166] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, + [167] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [168] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, + [169] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 6}, + [170] = {.lex_state = 11, .external_lex_state = 4, .reserved_word_set_id = 1}, + [171] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, + [172] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [173] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, + [174] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 6}, + [175] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 4}, + [176] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 4}, + [177] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [178] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, + [179] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, + [180] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 4}, + [181] = {.lex_state = 11, .external_lex_state = 2, .reserved_word_set_id = 1}, + [182] = {.lex_state = 11, .external_lex_state = 2, .reserved_word_set_id = 1}, + [183] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [184] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [185] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [186] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [187] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [188] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [189] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [190] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [191] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [192] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [193] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [194] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [195] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [196] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [197] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [198] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [199] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [200] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [201] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [202] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [203] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [204] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [205] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [206] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [207] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [208] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [209] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [210] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [211] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [212] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [213] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [214] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [215] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [216] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [217] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, + [218] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, + [219] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [220] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [221] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [222] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [223] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [224] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [225] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [226] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [227] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [228] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [229] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [230] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [231] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [232] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [233] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [234] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [235] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [236] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [237] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [238] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [239] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [240] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [241] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [242] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [243] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [244] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [245] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [246] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [247] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [248] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [249] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [250] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [251] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [252] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [253] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [254] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [255] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [256] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 10}, + [257] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [258] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [259] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [260] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [261] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [262] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [263] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [264] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [265] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [266] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [267] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [268] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [269] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [270] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [271] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [272] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [273] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [274] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [275] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [276] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [277] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [278] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [279] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [280] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [281] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [282] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [283] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [284] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [285] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [286] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [287] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [288] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [289] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [290] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [291] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [292] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [293] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [294] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [295] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [296] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [297] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [298] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [299] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [300] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [301] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [302] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [303] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [304] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [305] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [306] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [307] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [308] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [309] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [310] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [311] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [312] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [313] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [314] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [315] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [316] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [317] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [318] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [319] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [320] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [321] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 1}, + [322] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [323] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [324] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [325] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [326] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [327] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [328] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [329] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [330] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [331] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [332] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [333] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 9}, + [334] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [335] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [336] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [337] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 9}, + [338] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [339] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [340] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [341] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [342] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [343] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [344] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [345] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [346] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [347] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [348] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [349] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [350] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [351] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [352] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [353] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [354] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [355] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [356] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [357] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [358] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [359] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [360] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [361] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [362] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [363] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [364] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [365] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [366] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [367] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [368] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [369] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [370] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [371] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [372] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [373] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [374] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [375] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [376] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 10}, + [377] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [378] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [379] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [380] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [381] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [382] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [383] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 1}, + [384] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [385] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [386] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [387] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [388] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [389] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [390] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [391] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [392] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [393] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [394] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [395] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [396] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [397] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [398] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [399] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [400] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [401] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [402] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 10}, + [403] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 1}, + [404] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [405] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [406] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [407] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [408] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [409] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [410] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [411] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [412] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [413] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [414] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [415] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [416] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [417] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [418] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [419] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [420] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [421] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [422] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [423] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [424] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [425] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [426] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [427] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [428] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [429] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [430] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [431] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [432] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [433] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [434] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [435] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [436] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [437] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [438] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [439] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [440] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [441] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [442] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [443] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [444] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [445] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [446] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [447] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [448] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [449] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [450] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [451] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [452] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [453] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [454] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [455] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [456] = {.lex_state = 7, .external_lex_state = 9}, + [457] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [458] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [459] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [460] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [461] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [462] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [463] = {.lex_state = 7, .external_lex_state = 9}, + [464] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, + [465] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [466] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [467] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [468] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [469] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, + [470] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [471] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [472] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [473] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [474] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [475] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [476] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [477] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [478] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [479] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [480] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [481] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [482] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [483] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [484] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [485] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [486] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [487] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [488] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [489] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [490] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [491] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [492] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [493] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [494] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [495] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [496] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [497] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [498] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [499] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [500] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [501] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [502] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [503] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [504] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [505] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [506] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [507] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [508] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [509] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [510] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [511] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [512] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [513] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [514] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [515] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [516] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [517] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [518] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [519] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [520] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [521] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [522] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [523] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [524] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [525] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [526] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [527] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [528] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [529] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [530] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [531] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [532] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [533] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [534] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [535] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [536] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [537] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [538] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [539] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [540] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [541] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [542] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [543] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [544] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [545] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [546] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [547] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [548] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [549] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [550] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [551] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [552] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [553] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [554] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [555] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [556] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [557] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [558] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [559] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [560] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [561] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [562] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [563] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [564] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [565] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [566] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [567] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [568] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [569] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [570] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [571] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [572] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [573] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [574] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [575] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [576] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [577] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [578] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [579] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [580] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [581] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [582] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [583] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [584] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [585] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [586] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [587] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [588] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [589] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [590] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [591] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [592] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [593] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [594] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [595] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [596] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [597] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [598] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [599] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [600] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [601] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [602] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [603] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [604] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [605] = {.lex_state = 7, .external_lex_state = 9}, + [606] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [607] = {.lex_state = 7, .external_lex_state = 9}, + [608] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [609] = {.lex_state = 7, .external_lex_state = 9}, + [610] = {.lex_state = 7, .external_lex_state = 9}, + [611] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [612] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [613] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [614] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [615] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [616] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [617] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [618] = {.lex_state = 7, .external_lex_state = 9}, + [619] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [620] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, [621] = {.lex_state = 7, .external_lex_state = 9}, - [622] = {.lex_state = 52, .external_lex_state = 2}, - [623] = {.lex_state = 52, .external_lex_state = 2}, - [624] = {.lex_state = 7, .external_lex_state = 9}, - [625] = {.lex_state = 52, .external_lex_state = 2}, - [626] = {.lex_state = 53, .external_lex_state = 10}, - [627] = {.lex_state = 53, .external_lex_state = 11}, - [628] = {.lex_state = 54, .external_lex_state = 3}, - [629] = {.lex_state = 52, .external_lex_state = 3}, - [630] = {.lex_state = 8, .external_lex_state = 9}, - [631] = {.lex_state = 8, .external_lex_state = 9}, - [632] = {.lex_state = 8, .external_lex_state = 9}, - [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 = 8, .external_lex_state = 9}, - [638] = {.lex_state = 52, .external_lex_state = 2}, - [639] = {.lex_state = 8, .external_lex_state = 9}, - [640] = {.lex_state = 8, .external_lex_state = 9}, - [641] = {.lex_state = 8, .external_lex_state = 9}, - [642] = {.lex_state = 8, .external_lex_state = 9}, - [643] = {.lex_state = 8, .external_lex_state = 9}, - [644] = {.lex_state = 8, .external_lex_state = 9}, - [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 = 8, .external_lex_state = 9}, - [649] = {.lex_state = 8, .external_lex_state = 9}, - [650] = {.lex_state = 54, .external_lex_state = 2}, - [651] = {.lex_state = 53, .external_lex_state = 10}, - [652] = {.lex_state = 52, .external_lex_state = 6}, - [653] = {.lex_state = 53, .external_lex_state = 11}, - [654] = {.lex_state = 54, .external_lex_state = 2}, - [655] = {.lex_state = 52, .external_lex_state = 2}, - [656] = {.lex_state = 53, .external_lex_state = 11}, - [657] = {.lex_state = 54, .external_lex_state = 3}, - [658] = {.lex_state = 52, .external_lex_state = 2}, - [659] = {.lex_state = 54, .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 = 52, .external_lex_state = 2}, - [664] = {.lex_state = 54, .external_lex_state = 3}, - [665] = {.lex_state = 53, .external_lex_state = 10}, - [666] = {.lex_state = 52, .external_lex_state = 3}, - [667] = {.lex_state = 52, .external_lex_state = 2}, - [668] = {.lex_state = 54, .external_lex_state = 2}, - [669] = {.lex_state = 54, .external_lex_state = 2}, - [670] = {.lex_state = 53, .external_lex_state = 10}, - [671] = {.lex_state = 53, .external_lex_state = 10}, - [672] = {.lex_state = 53, .external_lex_state = 10}, - [673] = {.lex_state = 53, .external_lex_state = 10}, - [674] = {.lex_state = 52, .external_lex_state = 3}, - [675] = {.lex_state = 53, .external_lex_state = 11}, - [676] = {.lex_state = 54, .external_lex_state = 2}, - [677] = {.lex_state = 53, .external_lex_state = 10}, - [678] = {.lex_state = 53, .external_lex_state = 10}, - [679] = {.lex_state = 54, .external_lex_state = 2}, - [680] = {.lex_state = 54, .external_lex_state = 2}, - [681] = {.lex_state = 54, .external_lex_state = 3}, - [682] = {.lex_state = 52, .external_lex_state = 2}, - [683] = {.lex_state = 53, .external_lex_state = 11}, - [684] = {.lex_state = 53, .external_lex_state = 11}, - [685] = {.lex_state = 52, .external_lex_state = 6}, - [686] = {.lex_state = 54, .external_lex_state = 3}, - [687] = {.lex_state = 53, .external_lex_state = 11}, - [688] = {.lex_state = 54, .external_lex_state = 2}, - [689] = {.lex_state = 53, .external_lex_state = 11}, - [690] = {.lex_state = 53, .external_lex_state = 11}, - [691] = {.lex_state = 53, .external_lex_state = 10}, - [692] = {.lex_state = 53, .external_lex_state = 10}, - [693] = {.lex_state = 54, .external_lex_state = 2}, - [694] = {.lex_state = 52, .external_lex_state = 3}, - [695] = {.lex_state = 53, .external_lex_state = 11}, - [696] = {.lex_state = 54, .external_lex_state = 3}, - [697] = {.lex_state = 52, .external_lex_state = 3}, - [698] = {.lex_state = 53, .external_lex_state = 11}, - [699] = {.lex_state = 53, .external_lex_state = 11}, - [700] = {.lex_state = 52, .external_lex_state = 3}, - [701] = {.lex_state = 53, .external_lex_state = 10}, - [702] = {.lex_state = 52, .external_lex_state = 3}, - [703] = {.lex_state = 52, .external_lex_state = 3}, - [704] = {.lex_state = 52, .external_lex_state = 3}, - [705] = {.lex_state = 52, .external_lex_state = 2}, - [706] = {.lex_state = 52, .external_lex_state = 2}, - [707] = {.lex_state = 52, .external_lex_state = 2}, - [708] = {.lex_state = 52, .external_lex_state = 3}, - [709] = {.lex_state = 52, .external_lex_state = 3}, - [710] = {.lex_state = 52, .external_lex_state = 2}, - [711] = {.lex_state = 52, .external_lex_state = 2}, - [712] = {.lex_state = 52, .external_lex_state = 2}, - [713] = {.lex_state = 52, .external_lex_state = 2}, - [714] = {.lex_state = 52, .external_lex_state = 3}, - [715] = {.lex_state = 52, .external_lex_state = 2}, - [716] = {.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}, - [720] = {.lex_state = 52, .external_lex_state = 3}, - [721] = {.lex_state = 52, .external_lex_state = 2}, - [722] = {.lex_state = 52, .external_lex_state = 3}, - [723] = {.lex_state = 52, .external_lex_state = 3}, - [724] = {.lex_state = 52, .external_lex_state = 2}, - [725] = {.lex_state = 52, .external_lex_state = 3}, - [726] = {.lex_state = 52, .external_lex_state = 3}, - [727] = {.lex_state = 52, .external_lex_state = 8}, - [728] = {.lex_state = 52, .external_lex_state = 8}, - [729] = {.lex_state = 52, .external_lex_state = 2}, - [730] = {.lex_state = 52, .external_lex_state = 2}, - [731] = {.lex_state = 52, .external_lex_state = 2}, - [732] = {.lex_state = 52, .external_lex_state = 2}, - [733] = {.lex_state = 52, .external_lex_state = 2}, - [734] = {.lex_state = 52, .external_lex_state = 3}, - [735] = {.lex_state = 52, .external_lex_state = 3}, - [736] = {.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 = 2}, - [740] = {.lex_state = 52, .external_lex_state = 2}, - [741] = {.lex_state = 52, .external_lex_state = 2}, - [742] = {.lex_state = 52, .external_lex_state = 2}, - [743] = {.lex_state = 52, .external_lex_state = 2}, - [744] = {.lex_state = 52, .external_lex_state = 2}, - [745] = {.lex_state = 52, .external_lex_state = 3}, - [746] = {.lex_state = 52, .external_lex_state = 3}, - [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 = 3}, - [752] = {.lex_state = 52, .external_lex_state = 2}, - [753] = {.lex_state = 52, .external_lex_state = 3}, - [754] = {.lex_state = 52, .external_lex_state = 3}, - [755] = {.lex_state = 52, .external_lex_state = 2}, - [756] = {.lex_state = 52, .external_lex_state = 3}, - [757] = {.lex_state = 52, .external_lex_state = 3}, - [758] = {.lex_state = 52, .external_lex_state = 3}, - [759] = {.lex_state = 52, .external_lex_state = 3}, - [760] = {.lex_state = 52, .external_lex_state = 3}, - [761] = {.lex_state = 52, .external_lex_state = 3}, - [762] = {.lex_state = 52, .external_lex_state = 3}, - [763] = {.lex_state = 52, .external_lex_state = 3}, - [764] = {.lex_state = 52, .external_lex_state = 3}, - [765] = {.lex_state = 52, .external_lex_state = 2}, - [766] = {.lex_state = 52, .external_lex_state = 3}, - [767] = {.lex_state = 52, .external_lex_state = 2}, - [768] = {.lex_state = 52, .external_lex_state = 2}, - [769] = {.lex_state = 52, .external_lex_state = 8}, - [770] = {.lex_state = 52, .external_lex_state = 2}, - [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 = 3}, - [775] = {.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 = 2}, - [780] = {.lex_state = 52, .external_lex_state = 3}, - [781] = {.lex_state = 52, .external_lex_state = 2}, - [782] = {.lex_state = 52, .external_lex_state = 3}, - [783] = {.lex_state = 52, .external_lex_state = 2}, - [784] = {.lex_state = 52, .external_lex_state = 2}, - [785] = {.lex_state = 52, .external_lex_state = 2}, - [786] = {.lex_state = 52, .external_lex_state = 3}, - [787] = {.lex_state = 52, .external_lex_state = 2}, - [788] = {.lex_state = 52, .external_lex_state = 2}, - [789] = {.lex_state = 52, .external_lex_state = 3}, - [790] = {.lex_state = 52, .external_lex_state = 3}, - [791] = {.lex_state = 52, .external_lex_state = 2}, - [792] = {.lex_state = 52, .external_lex_state = 2}, - [793] = {.lex_state = 52, .external_lex_state = 3}, - [794] = {.lex_state = 52, .external_lex_state = 2}, - [795] = {.lex_state = 52, .external_lex_state = 2}, - [796] = {.lex_state = 52, .external_lex_state = 3}, - [797] = {.lex_state = 52, .external_lex_state = 3}, - [798] = {.lex_state = 52, .external_lex_state = 3}, - [799] = {.lex_state = 52, .external_lex_state = 3}, - [800] = {.lex_state = 52, .external_lex_state = 2}, - [801] = {.lex_state = 52, .external_lex_state = 3}, - [802] = {.lex_state = 52, .external_lex_state = 2}, - [803] = {.lex_state = 52, .external_lex_state = 3}, - [804] = {.lex_state = 52, .external_lex_state = 7}, - [805] = {.lex_state = 52, .external_lex_state = 3}, - [806] = {.lex_state = 52, .external_lex_state = 3}, - [807] = {.lex_state = 52, .external_lex_state = 2}, - [808] = {.lex_state = 52, .external_lex_state = 2}, - [809] = {.lex_state = 52, .external_lex_state = 2}, - [810] = {.lex_state = 52, .external_lex_state = 7}, - [811] = {.lex_state = 52, .external_lex_state = 3}, - [812] = {.lex_state = 52, .external_lex_state = 3}, - [813] = {.lex_state = 52, .external_lex_state = 2}, - [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 = 3}, - [819] = {.lex_state = 52, .external_lex_state = 2}, - [820] = {.lex_state = 52, .external_lex_state = 3}, - [821] = {.lex_state = 52, .external_lex_state = 3}, - [822] = {.lex_state = 52, .external_lex_state = 3}, - [823] = {.lex_state = 52, .external_lex_state = 2}, - [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 = 3}, - [831] = {.lex_state = 52, .external_lex_state = 2}, - [832] = {.lex_state = 52, .external_lex_state = 3}, - [833] = {.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 = 8}, - [838] = {.lex_state = 52, .external_lex_state = 3}, - [839] = {.lex_state = 52, .external_lex_state = 3}, - [840] = {.lex_state = 52, .external_lex_state = 2}, - [841] = {.lex_state = 52, .external_lex_state = 2}, - [842] = {.lex_state = 52, .external_lex_state = 2}, - [843] = {.lex_state = 52, .external_lex_state = 2}, - [844] = {.lex_state = 52, .external_lex_state = 3}, - [845] = {.lex_state = 52, .external_lex_state = 2}, - [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}, - [854] = {.lex_state = 52, .external_lex_state = 2}, - [855] = {.lex_state = 52, .external_lex_state = 2}, - [856] = {.lex_state = 52, .external_lex_state = 2}, - [857] = {.lex_state = 52, .external_lex_state = 2}, - [858] = {.lex_state = 52, .external_lex_state = 2}, - [859] = {.lex_state = 52, .external_lex_state = 2}, - [860] = {.lex_state = 52, .external_lex_state = 8}, - [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}, - [866] = {.lex_state = 52, .external_lex_state = 2}, - [867] = {.lex_state = 52, .external_lex_state = 2}, - [868] = {.lex_state = 52, .external_lex_state = 2}, - [869] = {.lex_state = 52, .external_lex_state = 2}, - [870] = {.lex_state = 13, .external_lex_state = 9}, - [871] = {.lex_state = 52, .external_lex_state = 2}, - [872] = {.lex_state = 52, .external_lex_state = 2}, - [873] = {.lex_state = 52, .external_lex_state = 2}, - [874] = {.lex_state = 52, .external_lex_state = 2}, - [875] = {.lex_state = 52, .external_lex_state = 2}, - [876] = {.lex_state = 52, .external_lex_state = 2}, - [877] = {.lex_state = 52, .external_lex_state = 2}, - [878] = {.lex_state = 52, .external_lex_state = 2}, - [879] = {.lex_state = 52, .external_lex_state = 2}, - [880] = {.lex_state = 52, .external_lex_state = 2}, - [881] = {.lex_state = 52, .external_lex_state = 2}, - [882] = {.lex_state = 52, .external_lex_state = 2}, - [883] = {.lex_state = 52, .external_lex_state = 2}, - [884] = {.lex_state = 52, .external_lex_state = 2}, - [885] = {.lex_state = 52, .external_lex_state = 2}, - [886] = {.lex_state = 52, .external_lex_state = 2}, - [887] = {.lex_state = 52, .external_lex_state = 2}, - [888] = {.lex_state = 52, .external_lex_state = 2}, - [889] = {.lex_state = 52, .external_lex_state = 2}, - [890] = {.lex_state = 52, .external_lex_state = 2}, - [891] = {.lex_state = 52, .external_lex_state = 2}, - [892] = {.lex_state = 52, .external_lex_state = 2}, - [893] = {.lex_state = 52, .external_lex_state = 2}, - [894] = {.lex_state = 52, .external_lex_state = 2}, - [895] = {.lex_state = 52, .external_lex_state = 2}, - [896] = {.lex_state = 52, .external_lex_state = 2}, - [897] = {.lex_state = 52, .external_lex_state = 2}, - [898] = {.lex_state = 52, .external_lex_state = 2}, - [899] = {.lex_state = 52, .external_lex_state = 2}, - [900] = {.lex_state = 52, .external_lex_state = 2}, - [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 = 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}, - [910] = {.lex_state = 52, .external_lex_state = 2}, - [911] = {.lex_state = 52, .external_lex_state = 2}, - [912] = {.lex_state = 52, .external_lex_state = 2}, - [913] = {.lex_state = 52, .external_lex_state = 2}, - [914] = {.lex_state = 52, .external_lex_state = 2}, - [915] = {.lex_state = 52, .external_lex_state = 2}, - [916] = {.lex_state = 52, .external_lex_state = 2}, - [917] = {.lex_state = 52, .external_lex_state = 2}, - [918] = {.lex_state = 52, .external_lex_state = 2}, - [919] = {.lex_state = 52, .external_lex_state = 2}, - [920] = {.lex_state = 52, .external_lex_state = 2}, - [921] = {.lex_state = 52, .external_lex_state = 2}, - [922] = {.lex_state = 52, .external_lex_state = 2}, - [923] = {.lex_state = 52, .external_lex_state = 2}, - [924] = {.lex_state = 52, .external_lex_state = 2}, - [925] = {.lex_state = 52, .external_lex_state = 2}, - [926] = {.lex_state = 52, .external_lex_state = 2}, - [927] = {.lex_state = 13, .external_lex_state = 12}, - [928] = {.lex_state = 13, .external_lex_state = 13}, - [929] = {.lex_state = 52, .external_lex_state = 2}, - [930] = {.lex_state = 52, .external_lex_state = 2}, - [931] = {.lex_state = 52, .external_lex_state = 2}, - [932] = {.lex_state = 52, .external_lex_state = 2}, - [933] = {.lex_state = 52, .external_lex_state = 2}, - [934] = {.lex_state = 52, .external_lex_state = 2}, - [935] = {.lex_state = 52, .external_lex_state = 2}, - [936] = {.lex_state = 52, .external_lex_state = 2}, - [937] = {.lex_state = 52, .external_lex_state = 2}, - [938] = {.lex_state = 52, .external_lex_state = 2}, - [939] = {.lex_state = 52, .external_lex_state = 2}, - [940] = {.lex_state = 52, .external_lex_state = 2}, - [941] = {.lex_state = 52, .external_lex_state = 2}, - [942] = {.lex_state = 52, .external_lex_state = 2}, - [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 = 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}, - [950] = {.lex_state = 52, .external_lex_state = 2}, - [951] = {.lex_state = 52, .external_lex_state = 2}, - [952] = {.lex_state = 52, .external_lex_state = 2}, - [953] = {.lex_state = 52, .external_lex_state = 2}, - [954] = {.lex_state = 52, .external_lex_state = 2}, - [955] = {.lex_state = 52, .external_lex_state = 2}, - [956] = {.lex_state = 52, .external_lex_state = 2}, - [957] = {.lex_state = 52, .external_lex_state = 2}, - [958] = {.lex_state = 52, .external_lex_state = 2}, - [959] = {.lex_state = 52, .external_lex_state = 2}, - [960] = {.lex_state = 52, .external_lex_state = 2}, - [961] = {.lex_state = 52, .external_lex_state = 2}, - [962] = {.lex_state = 52, .external_lex_state = 2}, - [963] = {.lex_state = 52, .external_lex_state = 2}, - [964] = {.lex_state = 13, .external_lex_state = 12}, - [965] = {.lex_state = 52, .external_lex_state = 2}, - [966] = {.lex_state = 13, .external_lex_state = 4}, - [967] = {.lex_state = 13, .external_lex_state = 14}, - [968] = {.lex_state = 13, .external_lex_state = 9}, - [969] = {.lex_state = 13, .external_lex_state = 4}, - [970] = {.lex_state = 13, .external_lex_state = 4}, - [971] = {.lex_state = 13, .external_lex_state = 15}, - [972] = {.lex_state = 13, .external_lex_state = 14}, - [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}, - [977] = {.lex_state = 13, .external_lex_state = 7}, - [978] = {.lex_state = 13, .external_lex_state = 7}, - [979] = {.lex_state = 13, .external_lex_state = 7}, - [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 = 6}, - [985] = {.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 = 9}, - [989] = {.lex_state = 13, .external_lex_state = 9}, - [990] = {.lex_state = 13, .external_lex_state = 9}, - [991] = {.lex_state = 13, .external_lex_state = 9}, - [992] = {.lex_state = 13, .external_lex_state = 13}, - [993] = {.lex_state = 13, .external_lex_state = 12}, - [994] = {.lex_state = 13, .external_lex_state = 2}, - [995] = {.lex_state = 13, .external_lex_state = 2}, + [622] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [623] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, + [624] = {.lex_state = 13, .external_lex_state = 9}, + [625] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, + [626] = {.lex_state = 13, .external_lex_state = 9}, + [627] = {.lex_state = 13, .external_lex_state = 9}, + [628] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, + [629] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, + [630] = {.lex_state = 13, .external_lex_state = 9}, + [631] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [632] = {.lex_state = 13, .external_lex_state = 9}, + [633] = {.lex_state = 13, .external_lex_state = 9}, + [634] = {.lex_state = 13, .external_lex_state = 9}, + [635] = {.lex_state = 13, .external_lex_state = 9}, + [636] = {.lex_state = 13, .external_lex_state = 9}, + [637] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [638] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, + [639] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, + [640] = {.lex_state = 13, .external_lex_state = 9}, + [641] = {.lex_state = 13, .external_lex_state = 9}, + [642] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, + [643] = {.lex_state = 13, .external_lex_state = 9}, + [644] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, + [645] = {.lex_state = 13, .external_lex_state = 9}, + [646] = {.lex_state = 13, .external_lex_state = 9}, + [647] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, + [648] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, + [649] = {.lex_state = 13, .external_lex_state = 9}, + [650] = {.lex_state = 13, .external_lex_state = 9}, + [651] = {.lex_state = 13, .external_lex_state = 9}, + [652] = {.lex_state = 13, .external_lex_state = 9}, + [653] = {.lex_state = 13, .external_lex_state = 9}, + [654] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [655] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [656] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [657] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [658] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [659] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [660] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [661] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [662] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [663] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [664] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [665] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [666] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [667] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [668] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [669] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [670] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [671] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [672] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [673] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [674] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [675] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [676] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [677] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [678] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [679] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [680] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [681] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [682] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [683] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [684] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [685] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [686] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [687] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [688] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [689] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [690] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [691] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [692] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [693] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [694] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [695] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [696] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [697] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [698] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [699] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [700] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [701] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [702] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [703] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [704] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [705] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [706] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [707] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [708] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 12}, + [709] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [710] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 12}, + [711] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [712] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 12}, + [713] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 12}, + [714] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [715] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [716] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [717] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [718] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [719] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [720] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [721] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [722] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [723] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [724] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [725] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [726] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [727] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [728] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [729] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [730] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [731] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [732] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [733] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [734] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [735] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [736] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [737] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [738] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [739] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [740] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [741] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [742] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [743] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [744] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [745] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [746] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [747] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [748] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [749] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [750] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [751] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [752] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [753] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [754] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [755] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [756] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [757] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [758] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [759] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [760] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [761] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [762] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [763] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [764] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [765] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [766] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [767] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [768] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [769] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [770] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [771] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [772] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [773] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [774] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [775] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [776] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [777] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [778] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [779] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [780] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [781] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [782] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [783] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [784] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [785] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [786] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [787] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [788] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [789] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [790] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [791] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [792] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [793] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [794] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [795] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [796] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [797] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [798] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [799] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [800] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [801] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [802] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [803] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [804] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [805] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [806] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [807] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [808] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [809] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [810] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [811] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [812] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [813] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [814] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [815] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [816] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [817] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [818] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [819] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [820] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [821] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [822] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [823] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [824] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [825] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [826] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [827] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [828] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [829] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [830] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [831] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [832] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [833] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [834] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [835] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [836] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [837] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [838] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [839] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [840] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [841] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [842] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [843] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [844] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [845] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [846] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [847] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [848] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [849] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [850] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [851] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [852] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [853] = {.lex_state = 14, .external_lex_state = 9}, + [854] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [855] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [856] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [857] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [858] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [859] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [860] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [861] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [862] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [863] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [864] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [865] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [866] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [867] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [868] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [869] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [870] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [871] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [872] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [873] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [874] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [875] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [876] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [877] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [878] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [879] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [880] = {.lex_state = 14, .external_lex_state = 12}, + [881] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [882] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [883] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [884] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [885] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [886] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [887] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [888] = {.lex_state = 14, .external_lex_state = 12}, + [889] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [890] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [891] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [892] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [893] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [894] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [895] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [896] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [897] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [898] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [899] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [900] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [901] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [902] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [903] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [904] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [905] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [906] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [907] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [908] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [909] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [910] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [911] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [912] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [913] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [914] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [915] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [916] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [917] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [918] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [919] = {.lex_state = 14, .external_lex_state = 13}, + [920] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [921] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [922] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [923] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [924] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [925] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [926] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [927] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [928] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [929] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [930] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [931] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [932] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [933] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [934] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [935] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [936] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [937] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [938] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [939] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [940] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [941] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [942] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [943] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [944] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [945] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [946] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [947] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [948] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [949] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [950] = {.lex_state = 14, .external_lex_state = 4}, + [951] = {.lex_state = 14, .external_lex_state = 9}, + [952] = {.lex_state = 14, .external_lex_state = 14}, + [953] = {.lex_state = 14, .external_lex_state = 4}, + [954] = {.lex_state = 14, .external_lex_state = 4}, + [955] = {.lex_state = 14, .external_lex_state = 15}, + [956] = {.lex_state = 14, .external_lex_state = 14}, + [957] = {.lex_state = 14, .external_lex_state = 9}, + [958] = {.lex_state = 14, .external_lex_state = 9}, + [959] = {.lex_state = 14, .external_lex_state = 9}, + [960] = {.lex_state = 14, .external_lex_state = 9}, + [961] = {.lex_state = 14, .external_lex_state = 6}, + [962] = {.lex_state = 14, .external_lex_state = 6}, + [963] = {.lex_state = 14, .external_lex_state = 6}, + [964] = {.lex_state = 14, .external_lex_state = 9}, + [965] = {.lex_state = 14, .external_lex_state = 9}, + [966] = {.lex_state = 14, .external_lex_state = 9}, + [967] = {.lex_state = 14, .external_lex_state = 6}, + [968] = {.lex_state = 14, .external_lex_state = 9}, + [969] = {.lex_state = 14, .external_lex_state = 8}, + [970] = {.lex_state = 14, .external_lex_state = 8}, + [971] = {.lex_state = 14, .external_lex_state = 6}, + [972] = {.lex_state = 14, .external_lex_state = 13}, + [973] = {.lex_state = 14, .external_lex_state = 6}, + [974] = {.lex_state = 14, .external_lex_state = 8}, + [975] = {.lex_state = 14, .external_lex_state = 9}, + [976] = {.lex_state = 14, .external_lex_state = 9}, + [977] = {.lex_state = 14, .external_lex_state = 7}, + [978] = {.lex_state = 14, .external_lex_state = 12}, + [979] = {.lex_state = 14, .external_lex_state = 12}, + [980] = {.lex_state = 14, .external_lex_state = 12}, + [981] = {.lex_state = 14, .external_lex_state = 12}, + [982] = {.lex_state = 14, .external_lex_state = 12}, + [983] = {.lex_state = 14, .external_lex_state = 12}, + [984] = {.lex_state = 14, .external_lex_state = 14}, + [985] = {.lex_state = 14, .external_lex_state = 7}, + [986] = {.lex_state = 14, .external_lex_state = 7}, + [987] = {.lex_state = 14, .external_lex_state = 7}, + [988] = {.lex_state = 14, .external_lex_state = 13}, + [989] = {.lex_state = 14, .external_lex_state = 2}, + [990] = {.lex_state = 15, .external_lex_state = 9}, + [991] = {.lex_state = 14, .external_lex_state = 7}, + [992] = {.lex_state = 14, .external_lex_state = 13}, + [993] = {.lex_state = 14, .external_lex_state = 13}, + [994] = {.lex_state = 14, .external_lex_state = 7}, + [995] = {.lex_state = 14, .external_lex_state = 13}, [996] = {.lex_state = 14, .external_lex_state = 13}, [997] = {.lex_state = 14, .external_lex_state = 13}, - [998] = {.lex_state = 13, .external_lex_state = 12}, - [999] = {.lex_state = 13, .external_lex_state = 12}, - [1000] = {.lex_state = 14, .external_lex_state = 9}, - [1001] = {.lex_state = 13, .external_lex_state = 4}, - [1002] = {.lex_state = 13, .external_lex_state = 12}, - [1003] = {.lex_state = 13, .external_lex_state = 12}, - [1004] = {.lex_state = 13, .external_lex_state = 12}, - [1005] = {.lex_state = 13, .external_lex_state = 12}, - [1006] = {.lex_state = 13, .external_lex_state = 12}, - [1007] = {.lex_state = 13, .external_lex_state = 12}, - [1008] = {.lex_state = 13, .external_lex_state = 12}, - [1009] = {.lex_state = 13, .external_lex_state = 12}, - [1010] = {.lex_state = 13, .external_lex_state = 13}, - [1011] = {.lex_state = 13, .external_lex_state = 13}, - [1012] = {.lex_state = 14, .external_lex_state = 9}, - [1013] = {.lex_state = 13, .external_lex_state = 12}, - [1014] = {.lex_state = 13, .external_lex_state = 12}, - [1015] = {.lex_state = 13, .external_lex_state = 4}, - [1016] = {.lex_state = 13, .external_lex_state = 12}, - [1017] = {.lex_state = 13, .external_lex_state = 13}, - [1018] = {.lex_state = 13, .external_lex_state = 12}, - [1019] = {.lex_state = 13, .external_lex_state = 12}, - [1020] = {.lex_state = 13, .external_lex_state = 8}, - [1021] = {.lex_state = 13, .external_lex_state = 12}, - [1022] = {.lex_state = 13, .external_lex_state = 12}, - [1023] = {.lex_state = 13, .external_lex_state = 12}, - [1024] = {.lex_state = 13, .external_lex_state = 12}, - [1025] = {.lex_state = 13, .external_lex_state = 2}, - [1026] = {.lex_state = 14, .external_lex_state = 9}, - [1027] = {.lex_state = 13, .external_lex_state = 12}, - [1028] = {.lex_state = 13, .external_lex_state = 12}, - [1029] = {.lex_state = 13, .external_lex_state = 12}, - [1030] = {.lex_state = 13, .external_lex_state = 12}, - [1031] = {.lex_state = 13, .external_lex_state = 12}, - [1032] = {.lex_state = 13, .external_lex_state = 12}, - [1033] = {.lex_state = 13, .external_lex_state = 14}, - [1034] = {.lex_state = 13, .external_lex_state = 8}, - [1035] = {.lex_state = 13, .external_lex_state = 8}, - [1036] = {.lex_state = 13, .external_lex_state = 8}, - [1037] = {.lex_state = 13, .external_lex_state = 13}, - [1038] = {.lex_state = 13, .external_lex_state = 13}, - [1039] = {.lex_state = 13, .external_lex_state = 13}, - [1040] = {.lex_state = 13, .external_lex_state = 13}, - [1041] = {.lex_state = 13, .external_lex_state = 13}, - [1042] = {.lex_state = 13, .external_lex_state = 13}, - [1043] = {.lex_state = 13, .external_lex_state = 13}, - [1044] = {.lex_state = 13, .external_lex_state = 8}, - [1045] = {.lex_state = 13, .external_lex_state = 13}, - [1046] = {.lex_state = 13, .external_lex_state = 8}, - [1047] = {.lex_state = 13, .external_lex_state = 12}, - [1048] = {.lex_state = 13, .external_lex_state = 12}, - [1049] = {.lex_state = 13, .external_lex_state = 9}, - [1050] = {.lex_state = 13, .external_lex_state = 9}, - [1051] = {.lex_state = 14, .external_lex_state = 12}, - [1052] = {.lex_state = 13, .external_lex_state = 15}, - [1053] = {.lex_state = 13, .external_lex_state = 15}, - [1054] = {.lex_state = 13, .external_lex_state = 7}, - [1055] = {.lex_state = 13, .external_lex_state = 14}, - [1056] = {.lex_state = 14, .external_lex_state = 12}, - [1057] = {.lex_state = 14, .external_lex_state = 12}, - [1058] = {.lex_state = 14, .external_lex_state = 12}, - [1059] = {.lex_state = 13, .external_lex_state = 9}, - [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 = 15}, - [1065] = {.lex_state = 13, .external_lex_state = 6}, - [1066] = {.lex_state = 14, .external_lex_state = 13}, - [1067] = {.lex_state = 14, .external_lex_state = 13}, - [1068] = {.lex_state = 14, .external_lex_state = 13}, - [1069] = {.lex_state = 13, .external_lex_state = 15}, - [1070] = {.lex_state = 13, .external_lex_state = 15}, - [1071] = {.lex_state = 13, .external_lex_state = 14}, - [1072] = {.lex_state = 13, .external_lex_state = 15}, - [1073] = {.lex_state = 13, .external_lex_state = 9}, - [1074] = {.lex_state = 13, .external_lex_state = 6}, - [1075] = {.lex_state = 13, .external_lex_state = 9}, - [1076] = {.lex_state = 13, .external_lex_state = 9}, - [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 = 9}, - [1081] = {.lex_state = 13, .external_lex_state = 9}, - [1082] = {.lex_state = 14, .external_lex_state = 12}, - [1083] = {.lex_state = 13, .external_lex_state = 9}, - [1084] = {.lex_state = 13, .external_lex_state = 9}, - [1085] = {.lex_state = 13, .external_lex_state = 9}, - [1086] = {.lex_state = 14, .external_lex_state = 14}, - [1087] = {.lex_state = 14, .external_lex_state = 14}, - [1088] = {.lex_state = 13, .external_lex_state = 14}, - [1089] = {.lex_state = 13, .external_lex_state = 9}, - [1090] = {.lex_state = 13, .external_lex_state = 14}, - [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 = 9}, - [1096] = {.lex_state = 13, .external_lex_state = 14}, - [1097] = {.lex_state = 13, .external_lex_state = 14}, - [1098] = {.lex_state = 13, .external_lex_state = 9}, - [1099] = {.lex_state = 13, .external_lex_state = 6}, - [1100] = {.lex_state = 13, .external_lex_state = 14}, - [1101] = {.lex_state = 13, .external_lex_state = 14}, - [1102] = {.lex_state = 13, .external_lex_state = 14}, - [1103] = {.lex_state = 13, .external_lex_state = 14}, - [1104] = {.lex_state = 13, .external_lex_state = 14}, - [1105] = {.lex_state = 13, .external_lex_state = 14}, - [1106] = {.lex_state = 13, .external_lex_state = 14}, - [1107] = {.lex_state = 13, .external_lex_state = 14}, - [1108] = {.lex_state = 13, .external_lex_state = 9}, - [1109] = {.lex_state = 13, .external_lex_state = 9}, - [1110] = {.lex_state = 13, .external_lex_state = 7}, - [1111] = {.lex_state = 14, .external_lex_state = 12}, - [1112] = {.lex_state = 14, .external_lex_state = 12}, - [1113] = {.lex_state = 14, .external_lex_state = 12}, - [1114] = {.lex_state = 13, .external_lex_state = 9}, - [1115] = {.lex_state = 13, .external_lex_state = 9}, - [1116] = {.lex_state = 13, .external_lex_state = 7}, - [1117] = {.lex_state = 13, .external_lex_state = 7}, - [1118] = {.lex_state = 13, .external_lex_state = 9}, - [1119] = {.lex_state = 13, .external_lex_state = 9}, - [1120] = {.lex_state = 13, .external_lex_state = 9}, - [1121] = {.lex_state = 13, .external_lex_state = 9}, - [1122] = {.lex_state = 14, .external_lex_state = 14}, - [1123] = {.lex_state = 14, .external_lex_state = 14}, + [998] = {.lex_state = 14, .external_lex_state = 13}, + [999] = {.lex_state = 14, .external_lex_state = 13}, + [1000] = {.lex_state = 14, .external_lex_state = 13}, + [1001] = {.lex_state = 14, .external_lex_state = 13}, + [1002] = {.lex_state = 14, .external_lex_state = 13}, + [1003] = {.lex_state = 14, .external_lex_state = 2}, + [1004] = {.lex_state = 15, .external_lex_state = 13}, + [1005] = {.lex_state = 15, .external_lex_state = 13}, + [1006] = {.lex_state = 14, .external_lex_state = 12}, + [1007] = {.lex_state = 14, .external_lex_state = 12}, + [1008] = {.lex_state = 14, .external_lex_state = 4}, + [1009] = {.lex_state = 15, .external_lex_state = 9}, + [1010] = {.lex_state = 14, .external_lex_state = 4}, + [1011] = {.lex_state = 14, .external_lex_state = 12}, + [1012] = {.lex_state = 14, .external_lex_state = 12}, + [1013] = {.lex_state = 14, .external_lex_state = 12}, + [1014] = {.lex_state = 14, .external_lex_state = 12}, + [1015] = {.lex_state = 14, .external_lex_state = 12}, + [1016] = {.lex_state = 14, .external_lex_state = 12}, + [1017] = {.lex_state = 14, .external_lex_state = 12}, + [1018] = {.lex_state = 14, .external_lex_state = 12}, + [1019] = {.lex_state = 14, .external_lex_state = 12}, + [1020] = {.lex_state = 14, .external_lex_state = 12}, + [1021] = {.lex_state = 14, .external_lex_state = 12}, + [1022] = {.lex_state = 15, .external_lex_state = 9}, + [1023] = {.lex_state = 14, .external_lex_state = 2}, + [1024] = {.lex_state = 14, .external_lex_state = 12}, + [1025] = {.lex_state = 14, .external_lex_state = 12}, + [1026] = {.lex_state = 14, .external_lex_state = 12}, + [1027] = {.lex_state = 14, .external_lex_state = 12}, + [1028] = {.lex_state = 14, .external_lex_state = 12}, + [1029] = {.lex_state = 14, .external_lex_state = 12}, + [1030] = {.lex_state = 14, .external_lex_state = 12}, + [1031] = {.lex_state = 14, .external_lex_state = 12}, + [1032] = {.lex_state = 14, .external_lex_state = 12}, + [1033] = {.lex_state = 14, .external_lex_state = 9}, + [1034] = {.lex_state = 14, .external_lex_state = 9}, + [1035] = {.lex_state = 14, .external_lex_state = 9}, + [1036] = {.lex_state = 14, .external_lex_state = 9}, + [1037] = {.lex_state = 14, .external_lex_state = 9}, + [1038] = {.lex_state = 14, .external_lex_state = 14}, + [1039] = {.lex_state = 14, .external_lex_state = 14}, + [1040] = {.lex_state = 15, .external_lex_state = 12}, + [1041] = {.lex_state = 14, .external_lex_state = 9}, + [1042] = {.lex_state = 14, .external_lex_state = 14}, + [1043] = {.lex_state = 14, .external_lex_state = 9}, + [1044] = {.lex_state = 14, .external_lex_state = 9}, + [1045] = {.lex_state = 15, .external_lex_state = 14}, + [1046] = {.lex_state = 15, .external_lex_state = 14}, + [1047] = {.lex_state = 14, .external_lex_state = 14}, + [1048] = {.lex_state = 14, .external_lex_state = 14}, + [1049] = {.lex_state = 14, .external_lex_state = 9}, + [1050] = {.lex_state = 14, .external_lex_state = 9}, + [1051] = {.lex_state = 14, .external_lex_state = 9}, + [1052] = {.lex_state = 14, .external_lex_state = 9}, + [1053] = {.lex_state = 15, .external_lex_state = 9}, + [1054] = {.lex_state = 14, .external_lex_state = 9}, + [1055] = {.lex_state = 14, .external_lex_state = 9}, + [1056] = {.lex_state = 14, .external_lex_state = 9}, + [1057] = {.lex_state = 15, .external_lex_state = 13}, + [1058] = {.lex_state = 15, .external_lex_state = 13}, + [1059] = {.lex_state = 14, .external_lex_state = 15}, + [1060] = {.lex_state = 14, .external_lex_state = 15}, + [1061] = {.lex_state = 14, .external_lex_state = 15}, + [1062] = {.lex_state = 14, .external_lex_state = 15}, + [1063] = {.lex_state = 14, .external_lex_state = 6}, + [1064] = {.lex_state = 14, .external_lex_state = 6}, + [1065] = {.lex_state = 14, .external_lex_state = 15}, + [1066] = {.lex_state = 14, .external_lex_state = 14}, + [1067] = {.lex_state = 15, .external_lex_state = 9}, + [1068] = {.lex_state = 14, .external_lex_state = 9}, + [1069] = {.lex_state = 14, .external_lex_state = 9}, + [1070] = {.lex_state = 14, .external_lex_state = 9}, + [1071] = {.lex_state = 14, .external_lex_state = 8}, + [1072] = {.lex_state = 14, .external_lex_state = 14}, + [1073] = {.lex_state = 15, .external_lex_state = 12}, + [1074] = {.lex_state = 15, .external_lex_state = 12}, + [1075] = {.lex_state = 14, .external_lex_state = 14}, + [1076] = {.lex_state = 14, .external_lex_state = 9}, + [1077] = {.lex_state = 14, .external_lex_state = 14}, + [1078] = {.lex_state = 14, .external_lex_state = 9}, + [1079] = {.lex_state = 14, .external_lex_state = 14}, + [1080] = {.lex_state = 14, .external_lex_state = 9}, + [1081] = {.lex_state = 14, .external_lex_state = 14}, + [1082] = {.lex_state = 14, .external_lex_state = 9}, + [1083] = {.lex_state = 14, .external_lex_state = 14}, + [1084] = {.lex_state = 14, .external_lex_state = 9}, + [1085] = {.lex_state = 14, .external_lex_state = 9}, + [1086] = {.lex_state = 15, .external_lex_state = 12}, + [1087] = {.lex_state = 15, .external_lex_state = 12}, + [1088] = {.lex_state = 15, .external_lex_state = 12}, + [1089] = {.lex_state = 15, .external_lex_state = 14}, + [1090] = {.lex_state = 14, .external_lex_state = 9}, + [1091] = {.lex_state = 14, .external_lex_state = 8}, + [1092] = {.lex_state = 14, .external_lex_state = 9}, + [1093] = {.lex_state = 14, .external_lex_state = 9}, + [1094] = {.lex_state = 14, .external_lex_state = 15}, + [1095] = {.lex_state = 14, .external_lex_state = 9}, + [1096] = {.lex_state = 14, .external_lex_state = 15}, + [1097] = {.lex_state = 14, .external_lex_state = 14}, + [1098] = {.lex_state = 14, .external_lex_state = 8}, + [1099] = {.lex_state = 14, .external_lex_state = 9}, + [1100] = {.lex_state = 15, .external_lex_state = 12}, + [1101] = {.lex_state = 15, .external_lex_state = 12}, + [1102] = {.lex_state = 15, .external_lex_state = 12}, + [1103] = {.lex_state = 14, .external_lex_state = 9}, + [1104] = {.lex_state = 15, .external_lex_state = 14}, + [1105] = {.lex_state = 14, .external_lex_state = 15}, + [1106] = {.lex_state = 15, .external_lex_state = 14}, + [1107] = {.lex_state = 14, .external_lex_state = 6}, + [1108] = {.lex_state = 15, .external_lex_state = 13}, + [1109] = {.lex_state = 15, .external_lex_state = 13}, + [1110] = {.lex_state = 15, .external_lex_state = 13}, + [1111] = {.lex_state = 14, .external_lex_state = 15}, + [1112] = {.lex_state = 14, .external_lex_state = 9}, + [1113] = {.lex_state = 14, .external_lex_state = 15}, + [1114] = {.lex_state = 14, .external_lex_state = 14}, + [1115] = {.lex_state = 14, .external_lex_state = 14}, + [1116] = {.lex_state = 14, .external_lex_state = 14}, + [1117] = {.lex_state = 15, .external_lex_state = 13}, + [1118] = {.lex_state = 14, .external_lex_state = 14}, + [1119] = {.lex_state = 15, .external_lex_state = 12}, + [1120] = {.lex_state = 15, .external_lex_state = 12}, + [1121] = {.lex_state = 15, .external_lex_state = 12}, + [1122] = {.lex_state = 14, .external_lex_state = 6}, + [1123] = {.lex_state = 14, .external_lex_state = 9}, [1124] = {.lex_state = 14, .external_lex_state = 14}, - [1125] = {.lex_state = 13, .external_lex_state = 14}, - [1126] = {.lex_state = 13, .external_lex_state = 9}, - [1127] = {.lex_state = 13, .external_lex_state = 14}, - [1128] = {.lex_state = 14, .external_lex_state = 13}, - [1129] = {.lex_state = 14, .external_lex_state = 12}, - [1130] = {.lex_state = 14, .external_lex_state = 12}, - [1131] = {.lex_state = 13, .external_lex_state = 9}, - [1132] = {.lex_state = 13, .external_lex_state = 7}, - [1133] = {.lex_state = 13, .external_lex_state = 14}, - [1134] = {.lex_state = 13, .external_lex_state = 9}, - [1135] = {.lex_state = 13, .external_lex_state = 9}, - [1136] = {.lex_state = 14, .external_lex_state = 9}, - [1137] = {.lex_state = 14, .external_lex_state = 9}, - [1138] = {.lex_state = 13, .external_lex_state = 14}, - [1139] = {.lex_state = 13, .external_lex_state = 14}, - [1140] = {.lex_state = 13, .external_lex_state = 9}, - [1141] = {.lex_state = 14, .external_lex_state = 13}, - [1142] = {.lex_state = 14, .external_lex_state = 13}, - [1143] = {.lex_state = 13, .external_lex_state = 9}, + [1125] = {.lex_state = 14, .external_lex_state = 14}, + [1126] = {.lex_state = 14, .external_lex_state = 8}, + [1127] = {.lex_state = 14, .external_lex_state = 8}, + [1128] = {.lex_state = 14, .external_lex_state = 9}, + [1129] = {.lex_state = 14, .external_lex_state = 9}, + [1130] = {.lex_state = 14, .external_lex_state = 9}, + [1131] = {.lex_state = 14, .external_lex_state = 9}, + [1132] = {.lex_state = 14, .external_lex_state = 14}, + [1133] = {.lex_state = 14, .external_lex_state = 12}, + [1134] = {.lex_state = 14, .external_lex_state = 13}, + [1135] = {.lex_state = 14, .external_lex_state = 13}, + [1136] = {.lex_state = 14, .external_lex_state = 12}, + [1137] = {.lex_state = 14, .external_lex_state = 12}, + [1138] = {.lex_state = 14, .external_lex_state = 12}, + [1139] = {.lex_state = 14, .external_lex_state = 12}, + [1140] = {.lex_state = 14, .external_lex_state = 13}, + [1141] = {.lex_state = 14, .external_lex_state = 12}, + [1142] = {.lex_state = 14, .external_lex_state = 12}, + [1143] = {.lex_state = 14, .external_lex_state = 12}, [1144] = {.lex_state = 14, .external_lex_state = 12}, - [1145] = {.lex_state = 13, .external_lex_state = 9}, - [1146] = {.lex_state = 14, .external_lex_state = 12}, - [1147] = {.lex_state = 13, .external_lex_state = 9}, - [1148] = {.lex_state = 13, .external_lex_state = 14}, - [1149] = {.lex_state = 14, .external_lex_state = 13}, - [1150] = {.lex_state = 13, .external_lex_state = 13}, - [1151] = {.lex_state = 13, .external_lex_state = 13}, - [1152] = {.lex_state = 13, .external_lex_state = 12}, - [1153] = {.lex_state = 13, .external_lex_state = 12}, - [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 = 12}, - [1158] = {.lex_state = 13, .external_lex_state = 13}, - [1159] = {.lex_state = 14, .external_lex_state = 14}, - [1160] = {.lex_state = 14, .external_lex_state = 14}, - [1161] = {.lex_state = 14, .external_lex_state = 14}, - [1162] = {.lex_state = 13, .external_lex_state = 12}, - [1163] = {.lex_state = 13, .external_lex_state = 12}, - [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 = 13, .external_lex_state = 12}, - [1168] = {.lex_state = 14, .external_lex_state = 14}, - [1169] = {.lex_state = 14, .external_lex_state = 14}, - [1170] = {.lex_state = 14, .external_lex_state = 14}, - [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}, - [1177] = {.lex_state = 13, .external_lex_state = 13}, - [1178] = {.lex_state = 13, .external_lex_state = 12}, - [1179] = {.lex_state = 13, .external_lex_state = 14}, - [1180] = {.lex_state = 13, .external_lex_state = 12}, - [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 = 13, .external_lex_state = 12}, - [1185] = {.lex_state = 13, .external_lex_state = 12}, - [1186] = {.lex_state = 13, .external_lex_state = 12}, - [1187] = {.lex_state = 13, .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 = 12}, - [1191] = {.lex_state = 13, .external_lex_state = 13}, - [1192] = {.lex_state = 13, .external_lex_state = 13}, - [1193] = {.lex_state = 13, .external_lex_state = 13}, - [1194] = {.lex_state = 13, .external_lex_state = 12}, - [1195] = {.lex_state = 13, .external_lex_state = 12}, - [1196] = {.lex_state = 13, .external_lex_state = 13}, - [1197] = {.lex_state = 13, .external_lex_state = 13}, - [1198] = {.lex_state = 13, .external_lex_state = 12}, - [1199] = {.lex_state = 13, .external_lex_state = 12}, - [1200] = {.lex_state = 13, .external_lex_state = 13}, - [1201] = {.lex_state = 14, .external_lex_state = 13}, - [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 = 13, .external_lex_state = 12}, - [1206] = {.lex_state = 13, .external_lex_state = 12}, - [1207] = {.lex_state = 13, .external_lex_state = 12}, - [1208] = {.lex_state = 13, .external_lex_state = 13}, - [1209] = {.lex_state = 13, .external_lex_state = 13}, - [1210] = {.lex_state = 13, .external_lex_state = 12}, - [1211] = {.lex_state = 13, .external_lex_state = 12}, - [1212] = {.lex_state = 13, .external_lex_state = 12}, - [1213] = {.lex_state = 13, .external_lex_state = 12}, - [1214] = {.lex_state = 13, .external_lex_state = 2}, - [1215] = {.lex_state = 13, .external_lex_state = 14}, - [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 = 13, .external_lex_state = 12}, - [1221] = {.lex_state = 13, .external_lex_state = 12}, - [1222] = {.lex_state = 13, .external_lex_state = 12}, - [1223] = {.lex_state = 13, .external_lex_state = 12}, - [1224] = {.lex_state = 13, .external_lex_state = 12}, - [1225] = {.lex_state = 13, .external_lex_state = 12}, - [1226] = {.lex_state = 13, .external_lex_state = 13}, - [1227] = {.lex_state = 13, .external_lex_state = 12}, - [1228] = {.lex_state = 13, .external_lex_state = 12}, - [1229] = {.lex_state = 13, .external_lex_state = 12}, - [1230] = {.lex_state = 13, .external_lex_state = 14}, - [1231] = {.lex_state = 13, .external_lex_state = 14}, - [1232] = {.lex_state = 14, .external_lex_state = 14}, - [1233] = {.lex_state = 13, .external_lex_state = 13}, - [1234] = {.lex_state = 14, .external_lex_state = 14}, - [1235] = {.lex_state = 14, .external_lex_state = 14}, - [1236] = {.lex_state = 13, .external_lex_state = 13}, - [1237] = {.lex_state = 13, .external_lex_state = 13}, - [1238] = {.lex_state = 14, .external_lex_state = 13}, - [1239] = {.lex_state = 13, .external_lex_state = 12}, - [1240] = {.lex_state = 13, .external_lex_state = 12}, - [1241] = {.lex_state = 13, .external_lex_state = 12}, - [1242] = {.lex_state = 13, .external_lex_state = 12}, - [1243] = {.lex_state = 13, .external_lex_state = 12}, - [1244] = {.lex_state = 13, .external_lex_state = 12}, - [1245] = {.lex_state = 13, .external_lex_state = 13}, - [1246] = {.lex_state = 14, .external_lex_state = 13}, - [1247] = {.lex_state = 13, .external_lex_state = 8}, - [1248] = {.lex_state = 13, .external_lex_state = 12}, - [1249] = {.lex_state = 13, .external_lex_state = 12}, - [1250] = {.lex_state = 13, .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 = 8}, - [1254] = {.lex_state = 13, .external_lex_state = 12}, - [1255] = {.lex_state = 13, .external_lex_state = 12}, - [1256] = {.lex_state = 13, .external_lex_state = 13}, - [1257] = {.lex_state = 13, .external_lex_state = 13}, - [1258] = {.lex_state = 13, .external_lex_state = 13}, - [1259] = {.lex_state = 13, .external_lex_state = 13}, - [1260] = {.lex_state = 13, .external_lex_state = 13}, - [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}, - [1265] = {.lex_state = 13, .external_lex_state = 13}, - [1266] = {.lex_state = 13, .external_lex_state = 12}, - [1267] = {.lex_state = 13, .external_lex_state = 12}, - [1268] = {.lex_state = 13, .external_lex_state = 13}, - [1269] = {.lex_state = 13, .external_lex_state = 12}, - [1270] = {.lex_state = 13, .external_lex_state = 13}, - [1271] = {.lex_state = 13, .external_lex_state = 13}, - [1272] = {.lex_state = 13, .external_lex_state = 13}, - [1273] = {.lex_state = 13, .external_lex_state = 13}, - [1274] = {.lex_state = 13, .external_lex_state = 13}, - [1275] = {.lex_state = 13, .external_lex_state = 13}, - [1276] = {.lex_state = 13, .external_lex_state = 14}, - [1277] = {.lex_state = 14, .external_lex_state = 14}, - [1278] = {.lex_state = 14, .external_lex_state = 14}, - [1279] = {.lex_state = 14, .external_lex_state = 14}, - [1280] = {.lex_state = 13, .external_lex_state = 8}, - [1281] = {.lex_state = 14, .external_lex_state = 13}, - [1282] = {.lex_state = 13, .external_lex_state = 14}, - [1283] = {.lex_state = 14, .external_lex_state = 15}, - [1284] = {.lex_state = 14, .external_lex_state = 15}, - [1285] = {.lex_state = 14, .external_lex_state = 15}, - [1286] = {.lex_state = 13, .external_lex_state = 2}, - [1287] = {.lex_state = 13, .external_lex_state = 13}, - [1288] = {.lex_state = 13, .external_lex_state = 13}, - [1289] = {.lex_state = 13, .external_lex_state = 8}, - [1290] = {.lex_state = 13, .external_lex_state = 13}, - [1291] = {.lex_state = 13, .external_lex_state = 13}, - [1292] = {.lex_state = 14, .external_lex_state = 13}, - [1293] = {.lex_state = 13, .external_lex_state = 13}, - [1294] = {.lex_state = 13, .external_lex_state = 13}, - [1295] = {.lex_state = 13, .external_lex_state = 13}, - [1296] = {.lex_state = 13, .external_lex_state = 13}, - [1297] = {.lex_state = 14, .external_lex_state = 15}, - [1298] = {.lex_state = 14, .external_lex_state = 15}, - [1299] = {.lex_state = 13, .external_lex_state = 13}, - [1300] = {.lex_state = 13, .external_lex_state = 14}, - [1301] = {.lex_state = 13, .external_lex_state = 12}, - [1302] = {.lex_state = 13, .external_lex_state = 14}, - [1303] = {.lex_state = 13, .external_lex_state = 13}, - [1304] = {.lex_state = 13, .external_lex_state = 14}, - [1305] = {.lex_state = 13, .external_lex_state = 14}, - [1306] = {.lex_state = 14, .external_lex_state = 13}, - [1307] = {.lex_state = 14, .external_lex_state = 13}, - [1308] = {.lex_state = 14, .external_lex_state = 13}, - [1309] = {.lex_state = 13, .external_lex_state = 14}, - [1310] = {.lex_state = 13, .external_lex_state = 14}, - [1311] = {.lex_state = 13, .external_lex_state = 15}, - [1312] = {.lex_state = 13, .external_lex_state = 14}, - [1313] = {.lex_state = 13, .external_lex_state = 15}, - [1314] = {.lex_state = 13, .external_lex_state = 15}, - [1315] = {.lex_state = 13, .external_lex_state = 14}, - [1316] = {.lex_state = 13, .external_lex_state = 14}, - [1317] = {.lex_state = 13, .external_lex_state = 14}, - [1318] = {.lex_state = 13, .external_lex_state = 14}, - [1319] = {.lex_state = 13, .external_lex_state = 14}, - [1320] = {.lex_state = 13, .external_lex_state = 14}, - [1321] = {.lex_state = 13, .external_lex_state = 14}, - [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 = 15}, - [1326] = {.lex_state = 13, .external_lex_state = 13}, - [1327] = {.lex_state = 13, .external_lex_state = 15}, - [1328] = {.lex_state = 13, .external_lex_state = 15}, - [1329] = {.lex_state = 13, .external_lex_state = 14}, - [1330] = {.lex_state = 13, .external_lex_state = 14}, - [1331] = {.lex_state = 13, .external_lex_state = 14}, - [1332] = {.lex_state = 13, .external_lex_state = 14}, - [1333] = {.lex_state = 13, .external_lex_state = 14}, - [1334] = {.lex_state = 13, .external_lex_state = 14}, - [1335] = {.lex_state = 13, .external_lex_state = 14}, - [1336] = {.lex_state = 13, .external_lex_state = 15}, - [1337] = {.lex_state = 13, .external_lex_state = 14}, - [1338] = {.lex_state = 13, .external_lex_state = 14}, - [1339] = {.lex_state = 13, .external_lex_state = 14}, - [1340] = {.lex_state = 8, .external_lex_state = 9}, - [1341] = {.lex_state = 8, .external_lex_state = 9}, - [1342] = {.lex_state = 13, .external_lex_state = 15}, - [1343] = {.lex_state = 13, .external_lex_state = 14}, - [1344] = {.lex_state = 13, .external_lex_state = 14}, - [1345] = {.lex_state = 13, .external_lex_state = 14}, - [1346] = {.lex_state = 13, .external_lex_state = 15}, - [1347] = {.lex_state = 13, .external_lex_state = 15}, - [1348] = {.lex_state = 13, .external_lex_state = 14}, - [1349] = {.lex_state = 13, .external_lex_state = 15}, - [1350] = {.lex_state = 13, .external_lex_state = 15}, - [1351] = {.lex_state = 13, .external_lex_state = 15}, - [1352] = {.lex_state = 13, .external_lex_state = 15}, - [1353] = {.lex_state = 13, .external_lex_state = 15}, - [1354] = {.lex_state = 13, .external_lex_state = 15}, - [1355] = {.lex_state = 13, .external_lex_state = 14}, - [1356] = {.lex_state = 13, .external_lex_state = 14}, - [1357] = {.lex_state = 13, .external_lex_state = 14}, - [1358] = {.lex_state = 13, .external_lex_state = 14}, - [1359] = {.lex_state = 13, .external_lex_state = 14}, + [1145] = {.lex_state = 14, .external_lex_state = 12}, + [1146] = {.lex_state = 14, .external_lex_state = 14}, + [1147] = {.lex_state = 14, .external_lex_state = 14}, + [1148] = {.lex_state = 14, .external_lex_state = 13}, + [1149] = {.lex_state = 14, .external_lex_state = 7}, + [1150] = {.lex_state = 15, .external_lex_state = 13}, + [1151] = {.lex_state = 15, .external_lex_state = 14}, + [1152] = {.lex_state = 15, .external_lex_state = 14}, + [1153] = {.lex_state = 15, .external_lex_state = 14}, + [1154] = {.lex_state = 15, .external_lex_state = 13}, + [1155] = {.lex_state = 14, .external_lex_state = 12}, + [1156] = {.lex_state = 14, .external_lex_state = 13}, + [1157] = {.lex_state = 14, .external_lex_state = 13}, + [1158] = {.lex_state = 14, .external_lex_state = 13}, + [1159] = {.lex_state = 15, .external_lex_state = 14}, + [1160] = {.lex_state = 14, .external_lex_state = 12}, + [1161] = {.lex_state = 15, .external_lex_state = 15}, + [1162] = {.lex_state = 15, .external_lex_state = 15}, + [1163] = {.lex_state = 15, .external_lex_state = 15}, + [1164] = {.lex_state = 14, .external_lex_state = 14}, + [1165] = {.lex_state = 14, .external_lex_state = 12}, + [1166] = {.lex_state = 14, .external_lex_state = 13}, + [1167] = {.lex_state = 14, .external_lex_state = 13}, + [1168] = {.lex_state = 14, .external_lex_state = 13}, + [1169] = {.lex_state = 14, .external_lex_state = 13}, + [1170] = {.lex_state = 15, .external_lex_state = 15}, + [1171] = {.lex_state = 14, .external_lex_state = 13}, + [1172] = {.lex_state = 14, .external_lex_state = 13}, + [1173] = {.lex_state = 14, .external_lex_state = 7}, + [1174] = {.lex_state = 14, .external_lex_state = 13}, + [1175] = {.lex_state = 14, .external_lex_state = 12}, + [1176] = {.lex_state = 15, .external_lex_state = 13}, + [1177] = {.lex_state = 14, .external_lex_state = 13}, + [1178] = {.lex_state = 14, .external_lex_state = 13}, + [1179] = {.lex_state = 14, .external_lex_state = 13}, + [1180] = {.lex_state = 14, .external_lex_state = 13}, + [1181] = {.lex_state = 14, .external_lex_state = 13}, + [1182] = {.lex_state = 14, .external_lex_state = 13}, + [1183] = {.lex_state = 14, .external_lex_state = 13}, + [1184] = {.lex_state = 14, .external_lex_state = 13}, + [1185] = {.lex_state = 14, .external_lex_state = 13}, + [1186] = {.lex_state = 14, .external_lex_state = 13}, + [1187] = {.lex_state = 14, .external_lex_state = 13}, + [1188] = {.lex_state = 14, .external_lex_state = 13}, + [1189] = {.lex_state = 14, .external_lex_state = 12}, + [1190] = {.lex_state = 14, .external_lex_state = 12}, + [1191] = {.lex_state = 14, .external_lex_state = 12}, + [1192] = {.lex_state = 15, .external_lex_state = 13}, + [1193] = {.lex_state = 14, .external_lex_state = 12}, + [1194] = {.lex_state = 14, .external_lex_state = 12}, + [1195] = {.lex_state = 14, .external_lex_state = 12}, + [1196] = {.lex_state = 14, .external_lex_state = 12}, + [1197] = {.lex_state = 14, .external_lex_state = 12}, + [1198] = {.lex_state = 14, .external_lex_state = 12}, + [1199] = {.lex_state = 14, .external_lex_state = 13}, + [1200] = {.lex_state = 14, .external_lex_state = 2}, + [1201] = {.lex_state = 15, .external_lex_state = 14}, + [1202] = {.lex_state = 15, .external_lex_state = 14}, + [1203] = {.lex_state = 15, .external_lex_state = 14}, + [1204] = {.lex_state = 14, .external_lex_state = 12}, + [1205] = {.lex_state = 14, .external_lex_state = 12}, + [1206] = {.lex_state = 14, .external_lex_state = 12}, + [1207] = {.lex_state = 14, .external_lex_state = 12}, + [1208] = {.lex_state = 14, .external_lex_state = 12}, + [1209] = {.lex_state = 14, .external_lex_state = 7}, + [1210] = {.lex_state = 14, .external_lex_state = 12}, + [1211] = {.lex_state = 14, .external_lex_state = 12}, + [1212] = {.lex_state = 14, .external_lex_state = 12}, + [1213] = {.lex_state = 14, .external_lex_state = 12}, + [1214] = {.lex_state = 14, .external_lex_state = 12}, + [1215] = {.lex_state = 15, .external_lex_state = 14}, + [1216] = {.lex_state = 15, .external_lex_state = 14}, + [1217] = {.lex_state = 14, .external_lex_state = 13}, + [1218] = {.lex_state = 15, .external_lex_state = 14}, + [1219] = {.lex_state = 15, .external_lex_state = 13}, + [1220] = {.lex_state = 14, .external_lex_state = 12}, + [1221] = {.lex_state = 14, .external_lex_state = 13}, + [1222] = {.lex_state = 14, .external_lex_state = 12}, + [1223] = {.lex_state = 14, .external_lex_state = 12}, + [1224] = {.lex_state = 14, .external_lex_state = 13}, + [1225] = {.lex_state = 14, .external_lex_state = 12}, + [1226] = {.lex_state = 14, .external_lex_state = 12}, + [1227] = {.lex_state = 14, .external_lex_state = 12}, + [1228] = {.lex_state = 14, .external_lex_state = 13}, + [1229] = {.lex_state = 14, .external_lex_state = 12}, + [1230] = {.lex_state = 14, .external_lex_state = 12}, + [1231] = {.lex_state = 14, .external_lex_state = 12}, + [1232] = {.lex_state = 14, .external_lex_state = 12}, + [1233] = {.lex_state = 14, .external_lex_state = 12}, + [1234] = {.lex_state = 14, .external_lex_state = 12}, + [1235] = {.lex_state = 14, .external_lex_state = 12}, + [1236] = {.lex_state = 14, .external_lex_state = 12}, + [1237] = {.lex_state = 14, .external_lex_state = 12}, + [1238] = {.lex_state = 14, .external_lex_state = 12}, + [1239] = {.lex_state = 14, .external_lex_state = 13}, + [1240] = {.lex_state = 14, .external_lex_state = 12}, + [1241] = {.lex_state = 14, .external_lex_state = 12}, + [1242] = {.lex_state = 14, .external_lex_state = 12}, + [1243] = {.lex_state = 14, .external_lex_state = 13}, + [1244] = {.lex_state = 14, .external_lex_state = 13}, + [1245] = {.lex_state = 14, .external_lex_state = 13}, + [1246] = {.lex_state = 15, .external_lex_state = 14}, + [1247] = {.lex_state = 14, .external_lex_state = 12}, + [1248] = {.lex_state = 14, .external_lex_state = 12}, + [1249] = {.lex_state = 14, .external_lex_state = 13}, + [1250] = {.lex_state = 14, .external_lex_state = 13}, + [1251] = {.lex_state = 14, .external_lex_state = 12}, + [1252] = {.lex_state = 15, .external_lex_state = 14}, + [1253] = {.lex_state = 14, .external_lex_state = 12}, + [1254] = {.lex_state = 14, .external_lex_state = 13}, + [1255] = {.lex_state = 14, .external_lex_state = 12}, + [1256] = {.lex_state = 14, .external_lex_state = 7}, + [1257] = {.lex_state = 14, .external_lex_state = 14}, + [1258] = {.lex_state = 14, .external_lex_state = 12}, + [1259] = {.lex_state = 14, .external_lex_state = 12}, + [1260] = {.lex_state = 15, .external_lex_state = 15}, + [1261] = {.lex_state = 14, .external_lex_state = 12}, + [1262] = {.lex_state = 14, .external_lex_state = 14}, + [1263] = {.lex_state = 14, .external_lex_state = 12}, + [1264] = {.lex_state = 14, .external_lex_state = 12}, + [1265] = {.lex_state = 14, .external_lex_state = 14}, + [1266] = {.lex_state = 14, .external_lex_state = 12}, + [1267] = {.lex_state = 14, .external_lex_state = 2}, + [1268] = {.lex_state = 14, .external_lex_state = 13}, + [1269] = {.lex_state = 14, .external_lex_state = 12}, + [1270] = {.lex_state = 14, .external_lex_state = 14}, + [1271] = {.lex_state = 14, .external_lex_state = 13}, + [1272] = {.lex_state = 14, .external_lex_state = 12}, + [1273] = {.lex_state = 14, .external_lex_state = 12}, + [1274] = {.lex_state = 14, .external_lex_state = 13}, + [1275] = {.lex_state = 14, .external_lex_state = 13}, + [1276] = {.lex_state = 14, .external_lex_state = 12}, + [1277] = {.lex_state = 14, .external_lex_state = 12}, + [1278] = {.lex_state = 14, .external_lex_state = 12}, + [1279] = {.lex_state = 14, .external_lex_state = 13}, + [1280] = {.lex_state = 14, .external_lex_state = 13}, + [1281] = {.lex_state = 14, .external_lex_state = 12}, + [1282] = {.lex_state = 14, .external_lex_state = 13}, + [1283] = {.lex_state = 14, .external_lex_state = 13}, + [1284] = {.lex_state = 14, .external_lex_state = 13}, + [1285] = {.lex_state = 15, .external_lex_state = 13}, + [1286] = {.lex_state = 14, .external_lex_state = 15}, + [1287] = {.lex_state = 14, .external_lex_state = 14}, + [1288] = {.lex_state = 14, .external_lex_state = 14}, + [1289] = {.lex_state = 14, .external_lex_state = 14}, + [1290] = {.lex_state = 15, .external_lex_state = 13}, + [1291] = {.lex_state = 14, .external_lex_state = 14}, + [1292] = {.lex_state = 14, .external_lex_state = 14}, + [1293] = {.lex_state = 14, .external_lex_state = 14}, + [1294] = {.lex_state = 14, .external_lex_state = 14}, + [1295] = {.lex_state = 14, .external_lex_state = 14}, + [1296] = {.lex_state = 14, .external_lex_state = 15}, + [1297] = {.lex_state = 14, .external_lex_state = 14}, + [1298] = {.lex_state = 14, .external_lex_state = 8}, + [1299] = {.lex_state = 14, .external_lex_state = 14}, + [1300] = {.lex_state = 14, .external_lex_state = 15}, + [1301] = {.lex_state = 14, .external_lex_state = 14}, + [1302] = {.lex_state = 14, .external_lex_state = 15}, + [1303] = {.lex_state = 14, .external_lex_state = 14}, + [1304] = {.lex_state = 14, .external_lex_state = 15}, + [1305] = {.lex_state = 14, .external_lex_state = 9}, + [1306] = {.lex_state = 14, .external_lex_state = 14}, + [1307] = {.lex_state = 14, .external_lex_state = 14}, + [1308] = {.lex_state = 14, .external_lex_state = 14}, + [1309] = {.lex_state = 14, .external_lex_state = 15}, + [1310] = {.lex_state = 14, .external_lex_state = 14}, + [1311] = {.lex_state = 15, .external_lex_state = 14}, + [1312] = {.lex_state = 14, .external_lex_state = 15}, + [1313] = {.lex_state = 14, .external_lex_state = 14}, + [1314] = {.lex_state = 14, .external_lex_state = 14}, + [1315] = {.lex_state = 14, .external_lex_state = 14}, + [1316] = {.lex_state = 14, .external_lex_state = 14}, + [1317] = {.lex_state = 14, .external_lex_state = 14}, + [1318] = {.lex_state = 14, .external_lex_state = 14}, + [1319] = {.lex_state = 14, .external_lex_state = 14}, + [1320] = {.lex_state = 14, .external_lex_state = 14}, + [1321] = {.lex_state = 15, .external_lex_state = 14}, + [1322] = {.lex_state = 13, .external_lex_state = 9}, + [1323] = {.lex_state = 14, .external_lex_state = 14}, + [1324] = {.lex_state = 14, .external_lex_state = 15}, + [1325] = {.lex_state = 14, .external_lex_state = 14}, + [1326] = {.lex_state = 14, .external_lex_state = 15}, + [1327] = {.lex_state = 14, .external_lex_state = 14}, + [1328] = {.lex_state = 14, .external_lex_state = 15}, + [1329] = {.lex_state = 15, .external_lex_state = 13}, + [1330] = {.lex_state = 14, .external_lex_state = 14}, + [1331] = {.lex_state = 14, .external_lex_state = 15}, + [1332] = {.lex_state = 14, .external_lex_state = 15}, + [1333] = {.lex_state = 14, .external_lex_state = 15}, + [1334] = {.lex_state = 14, .external_lex_state = 15}, + [1335] = {.lex_state = 14, .external_lex_state = 15}, + [1336] = {.lex_state = 14, .external_lex_state = 15}, + [1337] = {.lex_state = 14, .external_lex_state = 15}, + [1338] = {.lex_state = 14, .external_lex_state = 14}, + [1339] = {.lex_state = 14, .external_lex_state = 15}, + [1340] = {.lex_state = 14, .external_lex_state = 15}, + [1341] = {.lex_state = 13, .external_lex_state = 9}, + [1342] = {.lex_state = 14, .external_lex_state = 14}, + [1343] = {.lex_state = 14, .external_lex_state = 14}, + [1344] = {.lex_state = 14, .external_lex_state = 14}, + [1345] = {.lex_state = 14, .external_lex_state = 14}, + [1346] = {.lex_state = 15, .external_lex_state = 13}, + [1347] = {.lex_state = 14, .external_lex_state = 14}, + [1348] = {.lex_state = 14, .external_lex_state = 14}, + [1349] = {.lex_state = 14, .external_lex_state = 14}, + [1350] = {.lex_state = 14, .external_lex_state = 15}, + [1351] = {.lex_state = 14, .external_lex_state = 13}, + [1352] = {.lex_state = 14, .external_lex_state = 14}, + [1353] = {.lex_state = 14, .external_lex_state = 14}, + [1354] = {.lex_state = 14, .external_lex_state = 14}, + [1355] = {.lex_state = 14, .external_lex_state = 13}, + [1356] = {.lex_state = 14, .external_lex_state = 14}, + [1357] = {.lex_state = 14, .external_lex_state = 14}, + [1358] = {.lex_state = 14, .external_lex_state = 13}, + [1359] = {.lex_state = 14, .external_lex_state = 14}, [1360] = {.lex_state = 14, .external_lex_state = 14}, - [1361] = {.lex_state = 13, .external_lex_state = 14}, - [1362] = {.lex_state = 13, .external_lex_state = 14}, - [1363] = {.lex_state = 13, .external_lex_state = 14}, - [1364] = {.lex_state = 13, .external_lex_state = 14}, - [1365] = {.lex_state = 13, .external_lex_state = 14}, - [1366] = {.lex_state = 13, .external_lex_state = 14}, - [1367] = {.lex_state = 13, .external_lex_state = 7}, - [1368] = {.lex_state = 13, .external_lex_state = 14}, - [1369] = {.lex_state = 13, .external_lex_state = 7}, - [1370] = {.lex_state = 8, .external_lex_state = 9}, - [1371] = {.lex_state = 8, .external_lex_state = 9}, - [1372] = {.lex_state = 8, .external_lex_state = 9}, - [1373] = {.lex_state = 13, .external_lex_state = 15}, - [1374] = {.lex_state = 13, .external_lex_state = 14}, - [1375] = {.lex_state = 8, .external_lex_state = 9}, - [1376] = {.lex_state = 13, .external_lex_state = 15}, - [1377] = {.lex_state = 13, .external_lex_state = 15}, - [1378] = {.lex_state = 13, .external_lex_state = 14}, - [1379] = {.lex_state = 13, .external_lex_state = 14}, - [1380] = {.lex_state = 13, .external_lex_state = 14}, - [1381] = {.lex_state = 13, .external_lex_state = 14}, - [1382] = {.lex_state = 13, .external_lex_state = 14}, - [1383] = {.lex_state = 13, .external_lex_state = 15}, - [1384] = {.lex_state = 13, .external_lex_state = 15}, - [1385] = {.lex_state = 13, .external_lex_state = 14}, - [1386] = {.lex_state = 13, .external_lex_state = 15}, - [1387] = {.lex_state = 13, .external_lex_state = 14}, - [1388] = {.lex_state = 13, .external_lex_state = 15}, - [1389] = {.lex_state = 13, .external_lex_state = 14}, - [1390] = {.lex_state = 13, .external_lex_state = 14}, - [1391] = {.lex_state = 13, .external_lex_state = 14}, - [1392] = {.lex_state = 13, .external_lex_state = 15}, - [1393] = {.lex_state = 13, .external_lex_state = 14}, - [1394] = {.lex_state = 13, .external_lex_state = 15}, - [1395] = {.lex_state = 13, .external_lex_state = 15}, - [1396] = {.lex_state = 13, .external_lex_state = 14}, - [1397] = {.lex_state = 13, .external_lex_state = 15}, - [1398] = {.lex_state = 13, .external_lex_state = 15}, - [1399] = {.lex_state = 13, .external_lex_state = 15}, - [1400] = {.lex_state = 13, .external_lex_state = 14}, - [1401] = {.lex_state = 13, .external_lex_state = 15}, - [1402] = {.lex_state = 13, .external_lex_state = 15}, - [1403] = {.lex_state = 13, .external_lex_state = 15}, - [1404] = {.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 = 14}, - [1410] = {.lex_state = 13, .external_lex_state = 15}, - [1411] = {.lex_state = 13, .external_lex_state = 15}, - [1412] = {.lex_state = 13, .external_lex_state = 14}, - [1413] = {.lex_state = 13, .external_lex_state = 14}, - [1414] = {.lex_state = 13, .external_lex_state = 14}, - [1415] = {.lex_state = 13, .external_lex_state = 15}, - [1416] = {.lex_state = 13, .external_lex_state = 13}, - [1417] = {.lex_state = 13, .external_lex_state = 15}, - [1418] = {.lex_state = 13, .external_lex_state = 14}, - [1419] = {.lex_state = 13, .external_lex_state = 9}, - [1420] = {.lex_state = 13, .external_lex_state = 14}, - [1421] = {.lex_state = 13, .external_lex_state = 14}, - [1422] = {.lex_state = 13, .external_lex_state = 14}, - [1423] = {.lex_state = 13, .external_lex_state = 13}, - [1424] = {.lex_state = 13, .external_lex_state = 14}, - [1425] = {.lex_state = 14, .external_lex_state = 14}, - [1426] = {.lex_state = 14, .external_lex_state = 14}, - [1427] = {.lex_state = 13, .external_lex_state = 14}, - [1428] = {.lex_state = 13, .external_lex_state = 13}, - [1429] = {.lex_state = 13, .external_lex_state = 13}, - [1430] = {.lex_state = 13, .external_lex_state = 13}, - [1431] = {.lex_state = 13, .external_lex_state = 13}, - [1432] = {.lex_state = 13, .external_lex_state = 13}, - [1433] = {.lex_state = 13, .external_lex_state = 13}, - [1434] = {.lex_state = 13, .external_lex_state = 13}, - [1435] = {.lex_state = 13, .external_lex_state = 13}, - [1436] = {.lex_state = 13, .external_lex_state = 13}, - [1437] = {.lex_state = 13, .external_lex_state = 13}, - [1438] = {.lex_state = 13, .external_lex_state = 15}, - [1439] = {.lex_state = 14, .external_lex_state = 14}, - [1440] = {.lex_state = 13, .external_lex_state = 13}, - [1441] = {.lex_state = 14, .external_lex_state = 14}, - [1442] = {.lex_state = 13, .external_lex_state = 13}, - [1443] = {.lex_state = 13, .external_lex_state = 13}, - [1444] = {.lex_state = 13, .external_lex_state = 13}, - [1445] = {.lex_state = 13, .external_lex_state = 13}, - [1446] = {.lex_state = 13, .external_lex_state = 13}, - [1447] = {.lex_state = 13, .external_lex_state = 13}, - [1448] = {.lex_state = 14, .external_lex_state = 12}, - [1449] = {.lex_state = 14, .external_lex_state = 12}, - [1450] = {.lex_state = 14, .external_lex_state = 12}, - [1451] = {.lex_state = 13, .external_lex_state = 13}, - [1452] = {.lex_state = 14, .external_lex_state = 14}, - [1453] = {.lex_state = 13, .external_lex_state = 13}, - [1454] = {.lex_state = 13, .external_lex_state = 13}, + [1361] = {.lex_state = 14, .external_lex_state = 14}, + [1362] = {.lex_state = 14, .external_lex_state = 14}, + [1363] = {.lex_state = 14, .external_lex_state = 15}, + [1364] = {.lex_state = 14, .external_lex_state = 14}, + [1365] = {.lex_state = 14, .external_lex_state = 14}, + [1366] = {.lex_state = 13, .external_lex_state = 9}, + [1367] = {.lex_state = 14, .external_lex_state = 14}, + [1368] = {.lex_state = 14, .external_lex_state = 14}, + [1369] = {.lex_state = 14, .external_lex_state = 15}, + [1370] = {.lex_state = 14, .external_lex_state = 14}, + [1371] = {.lex_state = 14, .external_lex_state = 14}, + [1372] = {.lex_state = 13, .external_lex_state = 9}, + [1373] = {.lex_state = 13, .external_lex_state = 9}, + [1374] = {.lex_state = 14, .external_lex_state = 14}, + [1375] = {.lex_state = 14, .external_lex_state = 14}, + [1376] = {.lex_state = 14, .external_lex_state = 14}, + [1377] = {.lex_state = 14, .external_lex_state = 15}, + [1378] = {.lex_state = 14, .external_lex_state = 15}, + [1379] = {.lex_state = 14, .external_lex_state = 15}, + [1380] = {.lex_state = 14, .external_lex_state = 14}, + [1381] = {.lex_state = 14, .external_lex_state = 14}, + [1382] = {.lex_state = 14, .external_lex_state = 15}, + [1383] = {.lex_state = 14, .external_lex_state = 14}, + [1384] = {.lex_state = 14, .external_lex_state = 14}, + [1385] = {.lex_state = 14, .external_lex_state = 14}, + [1386] = {.lex_state = 14, .external_lex_state = 14}, + [1387] = {.lex_state = 14, .external_lex_state = 15}, + [1388] = {.lex_state = 14, .external_lex_state = 15}, + [1389] = {.lex_state = 13, .external_lex_state = 9}, + [1390] = {.lex_state = 14, .external_lex_state = 14}, + [1391] = {.lex_state = 14, .external_lex_state = 14}, + [1392] = {.lex_state = 14, .external_lex_state = 15}, + [1393] = {.lex_state = 14, .external_lex_state = 15}, + [1394] = {.lex_state = 15, .external_lex_state = 14}, + [1395] = {.lex_state = 14, .external_lex_state = 15}, + [1396] = {.lex_state = 14, .external_lex_state = 13}, + [1397] = {.lex_state = 14, .external_lex_state = 15}, + [1398] = {.lex_state = 14, .external_lex_state = 15}, + [1399] = {.lex_state = 14, .external_lex_state = 14}, + [1400] = {.lex_state = 14, .external_lex_state = 14}, + [1401] = {.lex_state = 14, .external_lex_state = 15}, + [1402] = {.lex_state = 14, .external_lex_state = 14}, + [1403] = {.lex_state = 14, .external_lex_state = 14}, + [1404] = {.lex_state = 14, .external_lex_state = 15}, + [1405] = {.lex_state = 14, .external_lex_state = 8}, + [1406] = {.lex_state = 14, .external_lex_state = 14}, + [1407] = {.lex_state = 14, .external_lex_state = 14}, + [1408] = {.lex_state = 14, .external_lex_state = 14}, + [1409] = {.lex_state = 14, .external_lex_state = 15}, + [1410] = {.lex_state = 14, .external_lex_state = 14}, + [1411] = {.lex_state = 14, .external_lex_state = 14}, + [1412] = {.lex_state = 14, .external_lex_state = 13}, + [1413] = {.lex_state = 15, .external_lex_state = 14}, + [1414] = {.lex_state = 15, .external_lex_state = 14}, + [1415] = {.lex_state = 14, .external_lex_state = 13}, + [1416] = {.lex_state = 14, .external_lex_state = 13}, + [1417] = {.lex_state = 14, .external_lex_state = 13}, + [1418] = {.lex_state = 14, .external_lex_state = 13}, + [1419] = {.lex_state = 14, .external_lex_state = 13}, + [1420] = {.lex_state = 14, .external_lex_state = 13}, + [1421] = {.lex_state = 14, .external_lex_state = 13}, + [1422] = {.lex_state = 14, .external_lex_state = 13}, + [1423] = {.lex_state = 14, .external_lex_state = 13}, + [1424] = {.lex_state = 14, .external_lex_state = 13}, + [1425] = {.lex_state = 14, .external_lex_state = 13}, + [1426] = {.lex_state = 14, .external_lex_state = 13}, + [1427] = {.lex_state = 14, .external_lex_state = 15}, + [1428] = {.lex_state = 14, .external_lex_state = 13}, + [1429] = {.lex_state = 14, .external_lex_state = 13}, + [1430] = {.lex_state = 14, .external_lex_state = 13}, + [1431] = {.lex_state = 14, .external_lex_state = 13}, + [1432] = {.lex_state = 15, .external_lex_state = 13}, + [1433] = {.lex_state = 14, .external_lex_state = 13}, + [1434] = {.lex_state = 14, .external_lex_state = 13}, + [1435] = {.lex_state = 14, .external_lex_state = 13}, + [1436] = {.lex_state = 14, .external_lex_state = 13}, + [1437] = {.lex_state = 14, .external_lex_state = 13}, + [1438] = {.lex_state = 14, .external_lex_state = 13}, + [1439] = {.lex_state = 14, .external_lex_state = 13}, + [1440] = {.lex_state = 14, .external_lex_state = 13}, + [1441] = {.lex_state = 14, .external_lex_state = 13}, + [1442] = {.lex_state = 14, .external_lex_state = 13}, + [1443] = {.lex_state = 14, .external_lex_state = 13}, + [1444] = {.lex_state = 14, .external_lex_state = 13}, + [1445] = {.lex_state = 15, .external_lex_state = 12}, + [1446] = {.lex_state = 15, .external_lex_state = 12}, + [1447] = {.lex_state = 15, .external_lex_state = 12}, + [1448] = {.lex_state = 14, .external_lex_state = 13}, + [1449] = {.lex_state = 14, .external_lex_state = 13}, + [1450] = {.lex_state = 14, .external_lex_state = 13}, + [1451] = {.lex_state = 14, .external_lex_state = 13}, + [1452] = {.lex_state = 15, .external_lex_state = 14}, + [1453] = {.lex_state = 15, .external_lex_state = 13}, + [1454] = {.lex_state = 15, .external_lex_state = 13}, [1455] = {.lex_state = 14, .external_lex_state = 13}, - [1456] = {.lex_state = 13, .external_lex_state = 13}, - [1457] = {.lex_state = 13, .external_lex_state = 13}, - [1458] = {.lex_state = 13, .external_lex_state = 13}, - [1459] = {.lex_state = 13, .external_lex_state = 13}, - [1460] = {.lex_state = 13, .external_lex_state = 13}, - [1461] = {.lex_state = 14, .external_lex_state = 13}, - [1462] = {.lex_state = 13, .external_lex_state = 13}, - [1463] = {.lex_state = 14, .external_lex_state = 13}, - [1464] = {.lex_state = 13, .external_lex_state = 13}, - [1465] = {.lex_state = 13, .external_lex_state = 13}, - [1466] = {.lex_state = 13, .external_lex_state = 13}, - [1467] = {.lex_state = 13, .external_lex_state = 13}, - [1468] = {.lex_state = 13, .external_lex_state = 13}, - [1469] = {.lex_state = 13, .external_lex_state = 13}, - [1470] = {.lex_state = 13, .external_lex_state = 13}, - [1471] = {.lex_state = 13, .external_lex_state = 13}, - [1472] = {.lex_state = 13, .external_lex_state = 13}, - [1473] = {.lex_state = 13, .external_lex_state = 13}, - [1474] = {.lex_state = 13, .external_lex_state = 13}, - [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}, - [1480] = {.lex_state = 8, .external_lex_state = 15}, - [1481] = {.lex_state = 13, .external_lex_state = 14}, - [1482] = {.lex_state = 13, .external_lex_state = 13}, - [1483] = {.lex_state = 13, .external_lex_state = 12}, - [1484] = {.lex_state = 8, .external_lex_state = 15}, - [1485] = {.lex_state = 8, .external_lex_state = 15}, - [1486] = {.lex_state = 8, .external_lex_state = 15}, - [1487] = {.lex_state = 8, .external_lex_state = 15}, - [1488] = {.lex_state = 8, .external_lex_state = 15}, - [1489] = {.lex_state = 8, .external_lex_state = 15}, - [1490] = {.lex_state = 8, .external_lex_state = 15}, - [1491] = {.lex_state = 8, .external_lex_state = 15}, - [1492] = {.lex_state = 8, .external_lex_state = 15}, - [1493] = {.lex_state = 8, .external_lex_state = 15}, - [1494] = {.lex_state = 12, .external_lex_state = 2}, - [1495] = {.lex_state = 12, .external_lex_state = 2}, - [1496] = {.lex_state = 5, .external_lex_state = 8}, - [1497] = {.lex_state = 5, .external_lex_state = 8}, - [1498] = {.lex_state = 5, .external_lex_state = 8}, - [1499] = {.lex_state = 5, .external_lex_state = 8}, - [1500] = {.lex_state = 5, .external_lex_state = 8}, - [1501] = {.lex_state = 5, .external_lex_state = 7}, - [1502] = {.lex_state = 5, .external_lex_state = 8}, - [1503] = {.lex_state = 5, .external_lex_state = 8}, - [1504] = {.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 = 8}, - [1508] = {.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 = 7}, - [1512] = {.lex_state = 5, .external_lex_state = 8}, - [1513] = {.lex_state = 5, .external_lex_state = 7}, - [1514] = {.lex_state = 5, .external_lex_state = 8}, - [1515] = {.lex_state = 5, .external_lex_state = 8}, - [1516] = {.lex_state = 5, .external_lex_state = 7}, - [1517] = {.lex_state = 5, .external_lex_state = 8}, - [1518] = {.lex_state = 5, .external_lex_state = 8}, - [1519] = {.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 = 7}, - [1524] = {.lex_state = 5, .external_lex_state = 8}, - [1525] = {.lex_state = 5, .external_lex_state = 8}, - [1526] = {.lex_state = 5, .external_lex_state = 7}, - [1527] = {.lex_state = 5, .external_lex_state = 8}, - [1528] = {.lex_state = 5, .external_lex_state = 8}, - [1529] = {.lex_state = 5, .external_lex_state = 8}, - [1530] = {.lex_state = 5, .external_lex_state = 7}, - [1531] = {.lex_state = 5, .external_lex_state = 7}, - [1532] = {.lex_state = 5, .external_lex_state = 2}, - [1533] = {.lex_state = 5, .external_lex_state = 2}, - [1534] = {.lex_state = 5, .external_lex_state = 2}, - [1535] = {.lex_state = 5, .external_lex_state = 2}, - [1536] = {.lex_state = 5, .external_lex_state = 2}, - [1537] = {.lex_state = 5, .external_lex_state = 6}, - [1538] = {.lex_state = 5, .external_lex_state = 6}, - [1539] = {.lex_state = 5, .external_lex_state = 6}, - [1540] = {.lex_state = 5, .external_lex_state = 6}, - [1541] = {.lex_state = 5, .external_lex_state = 6}, - [1542] = {.lex_state = 5, .external_lex_state = 6}, - [1543] = {.lex_state = 5, .external_lex_state = 6}, - [1544] = {.lex_state = 5, .external_lex_state = 6}, - [1545] = {.lex_state = 5, .external_lex_state = 6}, - [1546] = {.lex_state = 5, .external_lex_state = 6}, - [1547] = {.lex_state = 5, .external_lex_state = 6}, - [1548] = {.lex_state = 5, .external_lex_state = 6}, - [1549] = {.lex_state = 5, .external_lex_state = 6}, - [1550] = {.lex_state = 5, .external_lex_state = 6}, - [1551] = {.lex_state = 5, .external_lex_state = 6}, - [1552] = {.lex_state = 5, .external_lex_state = 6}, - [1553] = {.lex_state = 5, .external_lex_state = 6}, - [1554] = {.lex_state = 5, .external_lex_state = 6}, - [1555] = {.lex_state = 5, .external_lex_state = 6}, - [1556] = {.lex_state = 5, .external_lex_state = 6}, - [1557] = {.lex_state = 5, .external_lex_state = 2}, - [1558] = {.lex_state = 5, .external_lex_state = 2}, - [1559] = {.lex_state = 5, .external_lex_state = 2}, - [1560] = {.lex_state = 5, .external_lex_state = 2}, - [1561] = {.lex_state = 5, .external_lex_state = 2}, - [1562] = {.lex_state = 5, .external_lex_state = 2}, - [1563] = {.lex_state = 5, .external_lex_state = 2}, - [1564] = {.lex_state = 8, .external_lex_state = 9}, - [1565] = {.lex_state = 5, .external_lex_state = 2}, - [1566] = {.lex_state = 5, .external_lex_state = 2}, - [1567] = {.lex_state = 8, .external_lex_state = 9}, - [1568] = {.lex_state = 8, .external_lex_state = 13}, - [1569] = {.lex_state = 8, .external_lex_state = 13}, - [1570] = {.lex_state = 8, .external_lex_state = 14}, - [1571] = {.lex_state = 8, .external_lex_state = 15}, - [1572] = {.lex_state = 8, .external_lex_state = 15}, - [1573] = {.lex_state = 8, .external_lex_state = 14}, - [1574] = {.lex_state = 52, .external_lex_state = 12}, - [1575] = {.lex_state = 52, .external_lex_state = 12}, - [1576] = {.lex_state = 52, .external_lex_state = 12}, - [1577] = {.lex_state = 52, .external_lex_state = 12}, - [1578] = {.lex_state = 8, .external_lex_state = 13}, - [1579] = {.lex_state = 8, .external_lex_state = 13}, - [1580] = {.lex_state = 52, .external_lex_state = 14}, - [1581] = {.lex_state = 52, .external_lex_state = 2}, - [1582] = {.lex_state = 13, .external_lex_state = 12}, - [1583] = {.lex_state = 13, .external_lex_state = 12}, - [1584] = {.lex_state = 13, .external_lex_state = 12}, - [1585] = {.lex_state = 13, .external_lex_state = 12}, - [1586] = {.lex_state = 13, .external_lex_state = 12}, - [1587] = {.lex_state = 13, .external_lex_state = 12}, - [1588] = {.lex_state = 52, .external_lex_state = 2}, - [1589] = {.lex_state = 52, .external_lex_state = 14}, - [1590] = {.lex_state = 11, .external_lex_state = 9}, - [1591] = {.lex_state = 13, .external_lex_state = 14}, - [1592] = {.lex_state = 13, .external_lex_state = 14}, - [1593] = {.lex_state = 13, .external_lex_state = 14}, - [1594] = {.lex_state = 13, .external_lex_state = 14}, - [1595] = {.lex_state = 11, .external_lex_state = 9}, - [1596] = {.lex_state = 13, .external_lex_state = 14}, - [1597] = {.lex_state = 13, .external_lex_state = 14}, - [1598] = {.lex_state = 13, .external_lex_state = 15}, - [1599] = {.lex_state = 13, .external_lex_state = 13}, - [1600] = {.lex_state = 13, .external_lex_state = 13}, - [1601] = {.lex_state = 13, .external_lex_state = 15}, - [1602] = {.lex_state = 13, .external_lex_state = 15}, - [1603] = {.lex_state = 13, .external_lex_state = 15}, - [1604] = {.lex_state = 13, .external_lex_state = 15}, - [1605] = {.lex_state = 13, .external_lex_state = 15}, - [1606] = {.lex_state = 13, .external_lex_state = 14}, - [1607] = {.lex_state = 13, .external_lex_state = 14}, - [1608] = {.lex_state = 13, .external_lex_state = 14}, - [1609] = {.lex_state = 13, .external_lex_state = 14}, - [1610] = {.lex_state = 13, .external_lex_state = 15}, - [1611] = {.lex_state = 13, .external_lex_state = 15}, - [1612] = {.lex_state = 13, .external_lex_state = 15}, - [1613] = {.lex_state = 13, .external_lex_state = 15}, - [1614] = {.lex_state = 11, .external_lex_state = 9}, - [1615] = {.lex_state = 13, .external_lex_state = 13}, - [1616] = {.lex_state = 13, .external_lex_state = 15}, - [1617] = {.lex_state = 11, .external_lex_state = 9}, - [1618] = {.lex_state = 13, .external_lex_state = 14}, - [1619] = {.lex_state = 13, .external_lex_state = 14}, - [1620] = {.lex_state = 13, .external_lex_state = 15}, - [1621] = {.lex_state = 13, .external_lex_state = 13}, - [1622] = {.lex_state = 13, .external_lex_state = 15}, - [1623] = {.lex_state = 13, .external_lex_state = 15}, - [1624] = {.lex_state = 13, .external_lex_state = 15}, - [1625] = {.lex_state = 13, .external_lex_state = 15}, - [1626] = {.lex_state = 13, .external_lex_state = 15}, - [1627] = {.lex_state = 13, .external_lex_state = 15}, - [1628] = {.lex_state = 11, .external_lex_state = 9}, - [1629] = {.lex_state = 13, .external_lex_state = 15}, - [1630] = {.lex_state = 13, .external_lex_state = 15}, - [1631] = {.lex_state = 13, .external_lex_state = 15}, - [1632] = {.lex_state = 13, .external_lex_state = 15}, - [1633] = {.lex_state = 13, .external_lex_state = 13}, - [1634] = {.lex_state = 11, .external_lex_state = 9}, - [1635] = {.lex_state = 13, .external_lex_state = 13}, - [1636] = {.lex_state = 12, .external_lex_state = 15}, - [1637] = {.lex_state = 12, .external_lex_state = 15}, - [1638] = {.lex_state = 11, .external_lex_state = 15}, - [1639] = {.lex_state = 12, .external_lex_state = 15}, - [1640] = {.lex_state = 11, .external_lex_state = 15}, - [1641] = {.lex_state = 11, .external_lex_state = 9}, - [1642] = {.lex_state = 12, .external_lex_state = 15}, - [1643] = {.lex_state = 11, .external_lex_state = 15}, - [1644] = {.lex_state = 12, .external_lex_state = 15}, - [1645] = {.lex_state = 12, .external_lex_state = 15}, - [1646] = {.lex_state = 11, .external_lex_state = 15}, - [1647] = {.lex_state = 12, .external_lex_state = 15}, - [1648] = {.lex_state = 12, .external_lex_state = 15}, - [1649] = {.lex_state = 12, .external_lex_state = 15}, - [1650] = {.lex_state = 11, .external_lex_state = 15}, - [1651] = {.lex_state = 11, .external_lex_state = 15}, - [1652] = {.lex_state = 11, .external_lex_state = 15}, - [1653] = {.lex_state = 11, .external_lex_state = 15}, - [1654] = {.lex_state = 12, .external_lex_state = 15}, - [1655] = {.lex_state = 12, .external_lex_state = 15}, - [1656] = {.lex_state = 5, .external_lex_state = 14}, - [1657] = {.lex_state = 12, .external_lex_state = 15}, - [1658] = {.lex_state = 5, .external_lex_state = 14}, - [1659] = {.lex_state = 12, .external_lex_state = 15}, - [1660] = {.lex_state = 11, .external_lex_state = 15}, - [1661] = {.lex_state = 5, .external_lex_state = 14}, - [1662] = {.lex_state = 5, .external_lex_state = 15}, - [1663] = {.lex_state = 8, .external_lex_state = 13}, - [1664] = {.lex_state = 5, .external_lex_state = 15}, - [1665] = {.lex_state = 52, .external_lex_state = 12}, - [1666] = {.lex_state = 8, .external_lex_state = 9}, - [1667] = {.lex_state = 52, .external_lex_state = 12}, - [1668] = {.lex_state = 8, .external_lex_state = 9}, - [1669] = {.lex_state = 8, .external_lex_state = 9}, - [1670] = {.lex_state = 8, .external_lex_state = 9}, - [1671] = {.lex_state = 52, .external_lex_state = 12}, - [1672] = {.lex_state = 8, .external_lex_state = 9}, - [1673] = {.lex_state = 52, .external_lex_state = 12}, - [1674] = {.lex_state = 52, .external_lex_state = 12}, - [1675] = {.lex_state = 52, .external_lex_state = 12}, - [1676] = {.lex_state = 8, .external_lex_state = 9}, - [1677] = {.lex_state = 8, .external_lex_state = 9}, - [1678] = {.lex_state = 52, .external_lex_state = 12}, - [1679] = {.lex_state = 8, .external_lex_state = 9}, - [1680] = {.lex_state = 8, .external_lex_state = 9}, - [1681] = {.lex_state = 52, .external_lex_state = 12}, - [1682] = {.lex_state = 52, .external_lex_state = 14}, + [1456] = {.lex_state = 14, .external_lex_state = 13}, + [1457] = {.lex_state = 14, .external_lex_state = 13}, + [1458] = {.lex_state = 14, .external_lex_state = 13}, + [1459] = {.lex_state = 13, .external_lex_state = 15}, + [1460] = {.lex_state = 13, .external_lex_state = 15}, + [1461] = {.lex_state = 13, .external_lex_state = 15}, + [1462] = {.lex_state = 13, .external_lex_state = 15}, + [1463] = {.lex_state = 13, .external_lex_state = 15}, + [1464] = {.lex_state = 13, .external_lex_state = 15}, + [1465] = {.lex_state = 13, .external_lex_state = 15}, + [1466] = {.lex_state = 13, .external_lex_state = 15}, + [1467] = {.lex_state = 13, .external_lex_state = 15}, + [1468] = {.lex_state = 13, .external_lex_state = 15}, + [1469] = {.lex_state = 13, .external_lex_state = 15}, + [1470] = {.lex_state = 14, .external_lex_state = 12}, + [1471] = {.lex_state = 13, .external_lex_state = 15}, + [1472] = {.lex_state = 13, .external_lex_state = 15}, + [1473] = {.lex_state = 13, .external_lex_state = 15}, + [1474] = {.lex_state = 14, .external_lex_state = 14}, + [1475] = {.lex_state = 14, .external_lex_state = 13}, + [1476] = {.lex_state = 13, .external_lex_state = 15}, + [1477] = {.lex_state = 13, .external_lex_state = 15}, + [1478] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1479] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1480] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1481] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1482] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1483] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1484] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1485] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1486] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1487] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1488] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1489] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1490] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1491] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1492] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1493] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1494] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1495] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1496] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1497] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1498] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1499] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1500] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1501] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1502] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1503] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1504] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1505] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1506] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1507] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1508] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1509] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1510] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1511] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1512] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1513] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1514] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1515] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1516] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1517] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1518] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1519] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1520] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1521] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1522] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1523] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1524] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1525] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1526] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1527] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1528] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1529] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1530] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1531] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1532] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1533] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1534] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1535] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1536] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1537] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1538] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1539] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1540] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1541] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1542] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1543] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1544] = {.lex_state = 13, .external_lex_state = 9}, + [1545] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1546] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1547] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1548] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 15}, + [1549] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1550] = {.lex_state = 13, .external_lex_state = 9}, + [1551] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1552] = {.lex_state = 13, .external_lex_state = 13}, + [1553] = {.lex_state = 13, .external_lex_state = 13}, + [1554] = {.lex_state = 13, .external_lex_state = 14}, + [1555] = {.lex_state = 13, .external_lex_state = 14}, + [1556] = {.lex_state = 13, .external_lex_state = 15}, + [1557] = {.lex_state = 13, .external_lex_state = 15}, + [1558] = {.lex_state = 13, .external_lex_state = 12}, + [1559] = {.lex_state = 13, .external_lex_state = 12}, + [1560] = {.lex_state = 13, .external_lex_state = 13}, + [1561] = {.lex_state = 13, .external_lex_state = 12}, + [1562] = {.lex_state = 13, .external_lex_state = 13}, + [1563] = {.lex_state = 13, .external_lex_state = 12}, + [1564] = {.lex_state = 7, .external_lex_state = 14}, + [1565] = {.lex_state = 14, .external_lex_state = 12}, + [1566] = {.lex_state = 14, .external_lex_state = 12}, + [1567] = {.lex_state = 14, .external_lex_state = 12}, + [1568] = {.lex_state = 14, .external_lex_state = 12}, + [1569] = {.lex_state = 14, .external_lex_state = 12}, + [1570] = {.lex_state = 14, .external_lex_state = 12}, + [1571] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1572] = {.lex_state = 7, .external_lex_state = 14}, + [1573] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1574] = {.lex_state = 14, .external_lex_state = 14}, + [1575] = {.lex_state = 11, .external_lex_state = 9}, + [1576] = {.lex_state = 11, .external_lex_state = 9}, + [1577] = {.lex_state = 14, .external_lex_state = 14}, + [1578] = {.lex_state = 14, .external_lex_state = 14}, + [1579] = {.lex_state = 14, .external_lex_state = 14}, + [1580] = {.lex_state = 14, .external_lex_state = 14}, + [1581] = {.lex_state = 14, .external_lex_state = 14}, + [1582] = {.lex_state = 14, .external_lex_state = 15}, + [1583] = {.lex_state = 14, .external_lex_state = 14}, + [1584] = {.lex_state = 14, .external_lex_state = 14}, + [1585] = {.lex_state = 14, .external_lex_state = 14}, + [1586] = {.lex_state = 11, .external_lex_state = 9}, + [1587] = {.lex_state = 11, .external_lex_state = 9}, + [1588] = {.lex_state = 11, .external_lex_state = 9}, + [1589] = {.lex_state = 14, .external_lex_state = 14}, + [1590] = {.lex_state = 14, .external_lex_state = 15}, + [1591] = {.lex_state = 14, .external_lex_state = 15}, + [1592] = {.lex_state = 11, .external_lex_state = 9}, + [1593] = {.lex_state = 14, .external_lex_state = 15}, + [1594] = {.lex_state = 14, .external_lex_state = 15}, + [1595] = {.lex_state = 14, .external_lex_state = 15}, + [1596] = {.lex_state = 14, .external_lex_state = 15}, + [1597] = {.lex_state = 14, .external_lex_state = 15}, + [1598] = {.lex_state = 14, .external_lex_state = 15}, + [1599] = {.lex_state = 14, .external_lex_state = 15}, + [1600] = {.lex_state = 14, .external_lex_state = 14}, + [1601] = {.lex_state = 14, .external_lex_state = 14}, + [1602] = {.lex_state = 14, .external_lex_state = 13}, + [1603] = {.lex_state = 14, .external_lex_state = 13}, + [1604] = {.lex_state = 14, .external_lex_state = 15}, + [1605] = {.lex_state = 14, .external_lex_state = 15}, + [1606] = {.lex_state = 14, .external_lex_state = 13}, + [1607] = {.lex_state = 14, .external_lex_state = 13}, + [1608] = {.lex_state = 14, .external_lex_state = 13}, + [1609] = {.lex_state = 14, .external_lex_state = 15}, + [1610] = {.lex_state = 14, .external_lex_state = 15}, + [1611] = {.lex_state = 14, .external_lex_state = 15}, + [1612] = {.lex_state = 14, .external_lex_state = 15}, + [1613] = {.lex_state = 14, .external_lex_state = 15}, + [1614] = {.lex_state = 14, .external_lex_state = 15}, + [1615] = {.lex_state = 14, .external_lex_state = 15}, + [1616] = {.lex_state = 14, .external_lex_state = 15}, + [1617] = {.lex_state = 14, .external_lex_state = 15}, + [1618] = {.lex_state = 14, .external_lex_state = 13}, + [1619] = {.lex_state = 14, .external_lex_state = 15}, + [1620] = {.lex_state = 11, .external_lex_state = 15}, + [1621] = {.lex_state = 11, .external_lex_state = 15}, + [1622] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1623] = {.lex_state = 11, .external_lex_state = 15}, + [1624] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1625] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1626] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1627] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1628] = {.lex_state = 13, .external_lex_state = 15}, + [1629] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1630] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1631] = {.lex_state = 11, .external_lex_state = 9}, + [1632] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1633] = {.lex_state = 13, .external_lex_state = 15}, + [1634] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1635] = {.lex_state = 13, .external_lex_state = 15}, + [1636] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1637] = {.lex_state = 11, .external_lex_state = 15}, + [1638] = {.lex_state = 13, .external_lex_state = 15}, + [1639] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1640] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1641] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1642] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1643] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1644] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1645] = {.lex_state = 11, .external_lex_state = 15}, + [1646] = {.lex_state = 13, .external_lex_state = 13}, + [1647] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1648] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1649] = {.lex_state = 13, .external_lex_state = 9}, + [1650] = {.lex_state = 13, .external_lex_state = 12}, + [1651] = {.lex_state = 13, .external_lex_state = 9}, + [1652] = {.lex_state = 13, .external_lex_state = 9}, + [1653] = {.lex_state = 13, .external_lex_state = 9}, + [1654] = {.lex_state = 13, .external_lex_state = 12}, + [1655] = {.lex_state = 13, .external_lex_state = 9}, + [1656] = {.lex_state = 13, .external_lex_state = 9}, + [1657] = {.lex_state = 13, .external_lex_state = 9}, + [1658] = {.lex_state = 13, .external_lex_state = 9}, + [1659] = {.lex_state = 13, .external_lex_state = 9}, + [1660] = {.lex_state = 13, .external_lex_state = 12}, + [1661] = {.lex_state = 13, .external_lex_state = 12}, + [1662] = {.lex_state = 13, .external_lex_state = 12}, + [1663] = {.lex_state = 13, .external_lex_state = 12}, + [1664] = {.lex_state = 13, .external_lex_state = 12}, + [1665] = {.lex_state = 13, .external_lex_state = 12}, + [1666] = {.lex_state = 0, .external_lex_state = 16}, + [1667] = {.lex_state = 13, .external_lex_state = 13}, + [1668] = {.lex_state = 7, .external_lex_state = 14}, + [1669] = {.lex_state = 7, .external_lex_state = 13}, + [1670] = {.lex_state = 0, .external_lex_state = 16}, + [1671] = {.lex_state = 0, .external_lex_state = 16}, + [1672] = {.lex_state = 7, .external_lex_state = 14}, + [1673] = {.lex_state = 0, .external_lex_state = 16}, + [1674] = {.lex_state = 7, .external_lex_state = 14}, + [1675] = {.lex_state = 0, .external_lex_state = 16}, + [1676] = {.lex_state = 13, .external_lex_state = 13}, + [1677] = {.lex_state = 7, .external_lex_state = 14}, + [1678] = {.lex_state = 0, .external_lex_state = 16}, + [1679] = {.lex_state = 7, .external_lex_state = 14}, + [1680] = {.lex_state = 7, .external_lex_state = 14}, + [1681] = {.lex_state = 13, .external_lex_state = 9}, + [1682] = {.lex_state = 0, .external_lex_state = 16}, [1683] = {.lex_state = 0, .external_lex_state = 16}, - [1684] = {.lex_state = 0, .external_lex_state = 16}, - [1685] = {.lex_state = 52, .external_lex_state = 14}, - [1686] = {.lex_state = 52, .external_lex_state = 14}, - [1687] = {.lex_state = 0, .external_lex_state = 16}, - [1688] = {.lex_state = 0, .external_lex_state = 16}, - [1689] = {.lex_state = 8, .external_lex_state = 9}, + [1684] = {.lex_state = 7, .external_lex_state = 14}, + [1685] = {.lex_state = 0, .external_lex_state = 16}, + [1686] = {.lex_state = 0, .external_lex_state = 16}, + [1687] = {.lex_state = 7, .external_lex_state = 14}, + [1688] = {.lex_state = 7, .external_lex_state = 14}, + [1689] = {.lex_state = 13, .external_lex_state = 13}, [1690] = {.lex_state = 0, .external_lex_state = 16}, [1691] = {.lex_state = 0, .external_lex_state = 16}, - [1692] = {.lex_state = 52, .external_lex_state = 14}, - [1693] = {.lex_state = 52, .external_lex_state = 14}, - [1694] = {.lex_state = 52, .external_lex_state = 14}, - [1695] = {.lex_state = 8, .external_lex_state = 13}, - [1696] = {.lex_state = 0, .external_lex_state = 16}, - [1697] = {.lex_state = 0, .external_lex_state = 16}, - [1698] = {.lex_state = 52, .external_lex_state = 14}, - [1699] = {.lex_state = 52, .external_lex_state = 14}, - [1700] = {.lex_state = 52, .external_lex_state = 14}, + [1692] = {.lex_state = 7, .external_lex_state = 14}, + [1693] = {.lex_state = 7, .external_lex_state = 14}, + [1694] = {.lex_state = 0, .external_lex_state = 16}, + [1695] = {.lex_state = 0, .external_lex_state = 16}, + [1696] = {.lex_state = 7, .external_lex_state = 14}, + [1697] = {.lex_state = 13, .external_lex_state = 13}, + [1698] = {.lex_state = 7, .external_lex_state = 14}, + [1699] = {.lex_state = 7, .external_lex_state = 14}, + [1700] = {.lex_state = 0, .external_lex_state = 16}, [1701] = {.lex_state = 0, .external_lex_state = 16}, - [1702] = {.lex_state = 0, .external_lex_state = 16}, - [1703] = {.lex_state = 52, .external_lex_state = 14}, - [1704] = {.lex_state = 52, .external_lex_state = 14}, - [1705] = {.lex_state = 8, .external_lex_state = 13}, - [1706] = {.lex_state = 8, .external_lex_state = 13}, - [1707] = {.lex_state = 0, .external_lex_state = 16}, - [1708] = {.lex_state = 52, .external_lex_state = 14}, - [1709] = {.lex_state = 0, .external_lex_state = 16}, - [1710] = {.lex_state = 52, .external_lex_state = 14}, - [1711] = {.lex_state = 0, .external_lex_state = 16}, - [1712] = {.lex_state = 0, .external_lex_state = 16}, - [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 = 0, .external_lex_state = 16}, - [1717] = {.lex_state = 52, .external_lex_state = 14}, - [1718] = {.lex_state = 52, .external_lex_state = 14}, - [1719] = {.lex_state = 0, .external_lex_state = 16}, - [1720] = {.lex_state = 0, .external_lex_state = 16}, - [1721] = {.lex_state = 52, .external_lex_state = 13}, - [1722] = {.lex_state = 8, .external_lex_state = 13}, - [1723] = {.lex_state = 52, .external_lex_state = 13}, - [1724] = {.lex_state = 8, .external_lex_state = 13}, - [1725] = {.lex_state = 52, .external_lex_state = 13}, - [1726] = {.lex_state = 8, .external_lex_state = 13}, - [1727] = {.lex_state = 52, .external_lex_state = 13}, - [1728] = {.lex_state = 52, .external_lex_state = 13}, - [1729] = {.lex_state = 8, .external_lex_state = 13}, - [1730] = {.lex_state = 52, .external_lex_state = 13}, - [1731] = {.lex_state = 52, .external_lex_state = 13}, - [1732] = {.lex_state = 52, .external_lex_state = 13}, - [1733] = {.lex_state = 8, .external_lex_state = 13}, - [1734] = {.lex_state = 8, .external_lex_state = 13}, - [1735] = {.lex_state = 0, .external_lex_state = 16}, - [1736] = {.lex_state = 8, .external_lex_state = 14}, - [1737] = {.lex_state = 52, .external_lex_state = 12}, - [1738] = {.lex_state = 8, .external_lex_state = 15}, - [1739] = {.lex_state = 8, .external_lex_state = 14}, - [1740] = {.lex_state = 8, .external_lex_state = 9}, - [1741] = {.lex_state = 8, .external_lex_state = 15}, - [1742] = {.lex_state = 8, .external_lex_state = 15}, - [1743] = {.lex_state = 8, .external_lex_state = 15}, - [1744] = {.lex_state = 8, .external_lex_state = 15}, - [1745] = {.lex_state = 8, .external_lex_state = 14}, - [1746] = {.lex_state = 8, .external_lex_state = 14}, - [1747] = {.lex_state = 8, .external_lex_state = 15}, - [1748] = {.lex_state = 8, .external_lex_state = 14}, - [1749] = {.lex_state = 8, .external_lex_state = 14}, - [1750] = {.lex_state = 8, .external_lex_state = 14}, - [1751] = {.lex_state = 8, .external_lex_state = 15}, - [1752] = {.lex_state = 8, .external_lex_state = 15}, - [1753] = {.lex_state = 8, .external_lex_state = 15}, - [1754] = {.lex_state = 8, .external_lex_state = 14}, - [1755] = {.lex_state = 8, .external_lex_state = 14}, - [1756] = {.lex_state = 52, .external_lex_state = 12}, - [1757] = {.lex_state = 8, .external_lex_state = 14}, - [1758] = {.lex_state = 8, .external_lex_state = 15}, - [1759] = {.lex_state = 8, .external_lex_state = 13}, - [1760] = {.lex_state = 52, .external_lex_state = 12}, - [1761] = {.lex_state = 52, .external_lex_state = 12}, - [1762] = {.lex_state = 8, .external_lex_state = 15}, - [1763] = {.lex_state = 8, .external_lex_state = 13}, - [1764] = {.lex_state = 8, .external_lex_state = 13}, - [1765] = {.lex_state = 52, .external_lex_state = 12}, - [1766] = {.lex_state = 8, .external_lex_state = 13}, - [1767] = {.lex_state = 8, .external_lex_state = 13}, - [1768] = {.lex_state = 8, .external_lex_state = 13}, - [1769] = {.lex_state = 52, .external_lex_state = 12}, - [1770] = {.lex_state = 52, .external_lex_state = 9}, - [1771] = {.lex_state = 8, .external_lex_state = 13}, - [1772] = {.lex_state = 52, .external_lex_state = 12}, - [1773] = {.lex_state = 8, .external_lex_state = 13}, - [1774] = {.lex_state = 8, .external_lex_state = 15}, - [1775] = {.lex_state = 52, .external_lex_state = 12}, - [1776] = {.lex_state = 52, .external_lex_state = 12}, - [1777] = {.lex_state = 8, .external_lex_state = 13}, - [1778] = {.lex_state = 52, .external_lex_state = 12}, - [1779] = {.lex_state = 52, .external_lex_state = 12}, - [1780] = {.lex_state = 8, .external_lex_state = 13}, - [1781] = {.lex_state = 8, .external_lex_state = 15}, - [1782] = {.lex_state = 52, .external_lex_state = 12}, - [1783] = {.lex_state = 52, .external_lex_state = 12}, - [1784] = {.lex_state = 52, .external_lex_state = 12}, - [1785] = {.lex_state = 52, .external_lex_state = 12}, - [1786] = {.lex_state = 52, .external_lex_state = 12}, - [1787] = {.lex_state = 52, .external_lex_state = 12}, - [1788] = {.lex_state = 52, .external_lex_state = 12}, - [1789] = {.lex_state = 8, .external_lex_state = 15}, - [1790] = {.lex_state = 52, .external_lex_state = 12}, - [1791] = {.lex_state = 52, .external_lex_state = 12}, - [1792] = {.lex_state = 52, .external_lex_state = 12}, - [1793] = {.lex_state = 52, .external_lex_state = 12}, - [1794] = {.lex_state = 7, .external_lex_state = 13}, - [1795] = {.lex_state = 52, .external_lex_state = 13}, - [1796] = {.lex_state = 52, .external_lex_state = 14}, - [1797] = {.lex_state = 0, .external_lex_state = 16}, - [1798] = {.lex_state = 52, .external_lex_state = 15}, - [1799] = {.lex_state = 52, .external_lex_state = 9}, - [1800] = {.lex_state = 0, .external_lex_state = 16}, - [1801] = {.lex_state = 52, .external_lex_state = 13}, - [1802] = {.lex_state = 8, .external_lex_state = 15}, - [1803] = {.lex_state = 52, .external_lex_state = 12}, - [1804] = {.lex_state = 52, .external_lex_state = 14}, - [1805] = {.lex_state = 52, .external_lex_state = 9}, - [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 = 13}, - [1810] = {.lex_state = 52, .external_lex_state = 14}, - [1811] = {.lex_state = 52, .external_lex_state = 13}, - [1812] = {.lex_state = 52, .external_lex_state = 9}, - [1813] = {.lex_state = 52, .external_lex_state = 13}, - [1814] = {.lex_state = 52, .external_lex_state = 13}, - [1815] = {.lex_state = 7, .external_lex_state = 14}, - [1816] = {.lex_state = 52, .external_lex_state = 13}, - [1817] = {.lex_state = 52, .external_lex_state = 13}, - [1818] = {.lex_state = 52, .external_lex_state = 14}, - [1819] = {.lex_state = 52, .external_lex_state = 13}, - [1820] = {.lex_state = 52, .external_lex_state = 2}, - [1821] = {.lex_state = 9, .external_lex_state = 17}, - [1822] = {.lex_state = 52, .external_lex_state = 12}, - [1823] = {.lex_state = 9, .external_lex_state = 17}, - [1824] = {.lex_state = 52, .external_lex_state = 9}, - [1825] = {.lex_state = 52, .external_lex_state = 14}, - [1826] = {.lex_state = 52, .external_lex_state = 9}, - [1827] = {.lex_state = 52, .external_lex_state = 9}, - [1828] = {.lex_state = 52, .external_lex_state = 9}, - [1829] = {.lex_state = 9, .external_lex_state = 17}, - [1830] = {.lex_state = 52, .external_lex_state = 13}, - [1831] = {.lex_state = 52, .external_lex_state = 13}, - [1832] = {.lex_state = 52, .external_lex_state = 12}, - [1833] = {.lex_state = 52, .external_lex_state = 13}, - [1834] = {.lex_state = 52, .external_lex_state = 9}, - [1835] = {.lex_state = 52, .external_lex_state = 14}, - [1836] = {.lex_state = 52, .external_lex_state = 15}, - [1837] = {.lex_state = 52, .external_lex_state = 14}, - [1838] = {.lex_state = 7, .external_lex_state = 12}, - [1839] = {.lex_state = 52, .external_lex_state = 14}, - [1840] = {.lex_state = 52, .external_lex_state = 14}, - [1841] = {.lex_state = 52, .external_lex_state = 14}, - [1842] = {.lex_state = 52, .external_lex_state = 14}, - [1843] = {.lex_state = 52, .external_lex_state = 9}, - [1844] = {.lex_state = 52, .external_lex_state = 13}, - [1845] = {.lex_state = 52, .external_lex_state = 14}, - [1846] = {.lex_state = 52, .external_lex_state = 13}, - [1847] = {.lex_state = 52, .external_lex_state = 13}, - [1848] = {.lex_state = 52, .external_lex_state = 15}, - [1849] = {.lex_state = 52, .external_lex_state = 15}, - [1850] = {.lex_state = 52, .external_lex_state = 15}, - [1851] = {.lex_state = 52, .external_lex_state = 12}, - [1852] = {.lex_state = 52, .external_lex_state = 12}, - [1853] = {.lex_state = 7, .external_lex_state = 14}, - [1854] = {.lex_state = 52, .external_lex_state = 12}, - [1855] = {.lex_state = 52, .external_lex_state = 13}, - [1856] = {.lex_state = 7, .external_lex_state = 15}, - [1857] = {.lex_state = 52, .external_lex_state = 12}, - [1858] = {.lex_state = 52, .external_lex_state = 8}, + [1702] = {.lex_state = 7, .external_lex_state = 14}, + [1703] = {.lex_state = 7, .external_lex_state = 14}, + [1704] = {.lex_state = 0, .external_lex_state = 16}, + [1705] = {.lex_state = 0, .external_lex_state = 16}, + [1706] = {.lex_state = 7, .external_lex_state = 13}, + [1707] = {.lex_state = 13, .external_lex_state = 13}, + [1708] = {.lex_state = 13, .external_lex_state = 13}, + [1709] = {.lex_state = 7, .external_lex_state = 13}, + [1710] = {.lex_state = 13, .external_lex_state = 13}, + [1711] = {.lex_state = 13, .external_lex_state = 13}, + [1712] = {.lex_state = 7, .external_lex_state = 13}, + [1713] = {.lex_state = 13, .external_lex_state = 13}, + [1714] = {.lex_state = 7, .external_lex_state = 13}, + [1715] = {.lex_state = 7, .external_lex_state = 13}, + [1716] = {.lex_state = 7, .external_lex_state = 13}, + [1717] = {.lex_state = 7, .external_lex_state = 13}, + [1718] = {.lex_state = 0, .external_lex_state = 16}, + [1719] = {.lex_state = 7, .external_lex_state = 14}, + [1720] = {.lex_state = 13, .external_lex_state = 14}, + [1721] = {.lex_state = 13, .external_lex_state = 14}, + [1722] = {.lex_state = 13, .external_lex_state = 15}, + [1723] = {.lex_state = 13, .external_lex_state = 14}, + [1724] = {.lex_state = 13, .external_lex_state = 15}, + [1725] = {.lex_state = 13, .external_lex_state = 15}, + [1726] = {.lex_state = 13, .external_lex_state = 15}, + [1727] = {.lex_state = 13, .external_lex_state = 15}, + [1728] = {.lex_state = 13, .external_lex_state = 15}, + [1729] = {.lex_state = 13, .external_lex_state = 15}, + [1730] = {.lex_state = 13, .external_lex_state = 15}, + [1731] = {.lex_state = 13, .external_lex_state = 9}, + [1732] = {.lex_state = 13, .external_lex_state = 14}, + [1733] = {.lex_state = 13, .external_lex_state = 14}, + [1734] = {.lex_state = 13, .external_lex_state = 12}, + [1735] = {.lex_state = 13, .external_lex_state = 12}, + [1736] = {.lex_state = 13, .external_lex_state = 14}, + [1737] = {.lex_state = 13, .external_lex_state = 15}, + [1738] = {.lex_state = 13, .external_lex_state = 14}, + [1739] = {.lex_state = 13, .external_lex_state = 14}, + [1740] = {.lex_state = 13, .external_lex_state = 14}, + [1741] = {.lex_state = 13, .external_lex_state = 14}, + [1742] = {.lex_state = 13, .external_lex_state = 13}, + [1743] = {.lex_state = 13, .external_lex_state = 13}, + [1744] = {.lex_state = 13, .external_lex_state = 12}, + [1745] = {.lex_state = 13, .external_lex_state = 13}, + [1746] = {.lex_state = 13, .external_lex_state = 13}, + [1747] = {.lex_state = 13, .external_lex_state = 13}, + [1748] = {.lex_state = 13, .external_lex_state = 13}, + [1749] = {.lex_state = 13, .external_lex_state = 13}, + [1750] = {.lex_state = 13, .external_lex_state = 13}, + [1751] = {.lex_state = 13, .external_lex_state = 12}, + [1752] = {.lex_state = 13, .external_lex_state = 12}, + [1753] = {.lex_state = 13, .external_lex_state = 12}, + [1754] = {.lex_state = 13, .external_lex_state = 13}, + [1755] = {.lex_state = 13, .external_lex_state = 12}, + [1756] = {.lex_state = 13, .external_lex_state = 15}, + [1757] = {.lex_state = 13, .external_lex_state = 13}, + [1758] = {.lex_state = 13, .external_lex_state = 15}, + [1759] = {.lex_state = 13, .external_lex_state = 12}, + [1760] = {.lex_state = 7, .external_lex_state = 9}, + [1761] = {.lex_state = 13, .external_lex_state = 12}, + [1762] = {.lex_state = 13, .external_lex_state = 12}, + [1763] = {.lex_state = 13, .external_lex_state = 15}, + [1764] = {.lex_state = 13, .external_lex_state = 12}, + [1765] = {.lex_state = 13, .external_lex_state = 15}, + [1766] = {.lex_state = 13, .external_lex_state = 12}, + [1767] = {.lex_state = 13, .external_lex_state = 12}, + [1768] = {.lex_state = 13, .external_lex_state = 12}, + [1769] = {.lex_state = 13, .external_lex_state = 12}, + [1770] = {.lex_state = 13, .external_lex_state = 12}, + [1771] = {.lex_state = 13, .external_lex_state = 12}, + [1772] = {.lex_state = 13, .external_lex_state = 12}, + [1773] = {.lex_state = 13, .external_lex_state = 12}, + [1774] = {.lex_state = 13, .external_lex_state = 15}, + [1775] = {.lex_state = 13, .external_lex_state = 12}, + [1776] = {.lex_state = 13, .external_lex_state = 12}, + [1777] = {.lex_state = 13, .external_lex_state = 12}, + [1778] = {.lex_state = 7, .external_lex_state = 14}, + [1779] = {.lex_state = 7, .external_lex_state = 14}, + [1780] = {.lex_state = 13, .external_lex_state = 13}, + [1781] = {.lex_state = 7, .external_lex_state = 9}, + [1782] = {.lex_state = 13, .external_lex_state = 2}, + [1783] = {.lex_state = 7, .external_lex_state = 13}, + [1784] = {.lex_state = 13, .external_lex_state = 15}, + [1785] = {.lex_state = 7, .external_lex_state = 14}, + [1786] = {.lex_state = 7, .external_lex_state = 14}, + [1787] = {.lex_state = 7, .external_lex_state = 14}, + [1788] = {.lex_state = 13, .external_lex_state = 13}, + [1789] = {.lex_state = 7, .external_lex_state = 14}, + [1790] = {.lex_state = 7, .external_lex_state = 12}, + [1791] = {.lex_state = 7, .external_lex_state = 15}, + [1792] = {.lex_state = 13, .external_lex_state = 13}, + [1793] = {.lex_state = 13, .external_lex_state = 13}, + [1794] = {.lex_state = 7, .external_lex_state = 12}, + [1795] = {.lex_state = 7, .external_lex_state = 13}, + [1796] = {.lex_state = 7, .external_lex_state = 14}, + [1797] = {.lex_state = 7, .external_lex_state = 13}, + [1798] = {.lex_state = 13, .external_lex_state = 13}, + [1799] = {.lex_state = 7, .external_lex_state = 9}, + [1800] = {.lex_state = 7, .external_lex_state = 12}, + [1801] = {.lex_state = 13, .external_lex_state = 13}, + [1802] = {.lex_state = 7, .external_lex_state = 9}, + [1803] = {.lex_state = 7, .external_lex_state = 14}, + [1804] = {.lex_state = 7, .external_lex_state = 14}, + [1805] = {.lex_state = 7, .external_lex_state = 12}, + [1806] = {.lex_state = 0, .external_lex_state = 16}, + [1807] = {.lex_state = 7, .external_lex_state = 14}, + [1808] = {.lex_state = 7, .external_lex_state = 14}, + [1809] = {.lex_state = 7, .external_lex_state = 9}, + [1810] = {.lex_state = 7, .external_lex_state = 14}, + [1811] = {.lex_state = 55, .external_lex_state = 17}, + [1812] = {.lex_state = 7, .external_lex_state = 9}, + [1813] = {.lex_state = 7, .external_lex_state = 9}, + [1814] = {.lex_state = 55, .external_lex_state = 17}, + [1815] = {.lex_state = 13, .external_lex_state = 13}, + [1816] = {.lex_state = 7, .external_lex_state = 9}, + [1817] = {.lex_state = 13, .external_lex_state = 13}, + [1818] = {.lex_state = 7, .external_lex_state = 9}, + [1819] = {.lex_state = 55, .external_lex_state = 17}, + [1820] = {.lex_state = 7, .external_lex_state = 13}, + [1821] = {.lex_state = 0, .external_lex_state = 16}, + [1822] = {.lex_state = 7, .external_lex_state = 12}, + [1823] = {.lex_state = 13, .external_lex_state = 13}, + [1824] = {.lex_state = 7, .external_lex_state = 15}, + [1825] = {.lex_state = 7, .external_lex_state = 9}, + [1826] = {.lex_state = 13, .external_lex_state = 13}, + [1827] = {.lex_state = 55, .external_lex_state = 17}, + [1828] = {.lex_state = 7, .external_lex_state = 14}, + [1829] = {.lex_state = 7, .external_lex_state = 12}, + [1830] = {.lex_state = 7, .external_lex_state = 14}, + [1831] = {.lex_state = 13, .external_lex_state = 15}, + [1832] = {.lex_state = 7, .external_lex_state = 14}, + [1833] = {.lex_state = 7, .external_lex_state = 14}, + [1834] = {.lex_state = 7, .external_lex_state = 12}, + [1835] = {.lex_state = 7, .external_lex_state = 12}, + [1836] = {.lex_state = 7, .external_lex_state = 12}, + [1837] = {.lex_state = 7, .external_lex_state = 8}, + [1838] = {.lex_state = 7, .external_lex_state = 13}, + [1839] = {.lex_state = 7, .external_lex_state = 12}, + [1840] = {.lex_state = 7, .external_lex_state = 12}, + [1841] = {.lex_state = 7, .external_lex_state = 13}, + [1842] = {.lex_state = 7, .external_lex_state = 12}, + [1843] = {.lex_state = 7, .external_lex_state = 12}, + [1844] = {.lex_state = 7, .external_lex_state = 13}, + [1845] = {.lex_state = 7, .external_lex_state = 7}, + [1846] = {.lex_state = 13, .external_lex_state = 15}, + [1847] = {.lex_state = 7, .external_lex_state = 13}, + [1848] = {.lex_state = 7, .external_lex_state = 12}, + [1849] = {.lex_state = 7, .external_lex_state = 12}, + [1850] = {.lex_state = 13, .external_lex_state = 13}, + [1851] = {.lex_state = 7, .external_lex_state = 14}, + [1852] = {.lex_state = 7, .external_lex_state = 6}, + [1853] = {.lex_state = 13, .external_lex_state = 15}, + [1854] = {.lex_state = 7, .external_lex_state = 12}, + [1855] = {.lex_state = 7, .external_lex_state = 12}, + [1856] = {.lex_state = 7, .external_lex_state = 14}, + [1857] = {.lex_state = 7, .external_lex_state = 12}, + [1858] = {.lex_state = 7, .external_lex_state = 9}, [1859] = {.lex_state = 7, .external_lex_state = 13}, - [1860] = {.lex_state = 52, .external_lex_state = 12}, - [1861] = {.lex_state = 52, .external_lex_state = 13}, - [1862] = {.lex_state = 52, .external_lex_state = 9}, - [1863] = {.lex_state = 52, .external_lex_state = 14}, - [1864] = {.lex_state = 52, .external_lex_state = 15}, - [1865] = {.lex_state = 52, .external_lex_state = 14}, - [1866] = {.lex_state = 7, .external_lex_state = 14}, - [1867] = {.lex_state = 52, .external_lex_state = 13}, + [1860] = {.lex_state = 7, .external_lex_state = 9}, + [1861] = {.lex_state = 7, .external_lex_state = 13}, + [1862] = {.lex_state = 7, .external_lex_state = 12}, + [1863] = {.lex_state = 13, .external_lex_state = 15}, + [1864] = {.lex_state = 13, .external_lex_state = 13}, + [1865] = {.lex_state = 13, .external_lex_state = 15}, + [1866] = {.lex_state = 13, .external_lex_state = 15}, + [1867] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, [1868] = {.lex_state = 7, .external_lex_state = 14}, - [1869] = {.lex_state = 52, .external_lex_state = 15}, - [1870] = {.lex_state = 52, .external_lex_state = 12}, - [1871] = {.lex_state = 52, .external_lex_state = 12}, - [1872] = {.lex_state = 52, .external_lex_state = 15}, - [1873] = {.lex_state = 52, .external_lex_state = 13}, - [1874] = {.lex_state = 52, .external_lex_state = 15}, - [1875] = {.lex_state = 7, .external_lex_state = 13}, - [1876] = {.lex_state = 52, .external_lex_state = 12}, - [1877] = {.lex_state = 52, .external_lex_state = 7}, - [1878] = {.lex_state = 52, .external_lex_state = 13}, - [1879] = {.lex_state = 52, .external_lex_state = 12}, - [1880] = {.lex_state = 52, .external_lex_state = 13}, - [1881] = {.lex_state = 52, .external_lex_state = 14}, - [1882] = {.lex_state = 52, .external_lex_state = 12}, + [1869] = {.lex_state = 13, .external_lex_state = 15}, + [1870] = {.lex_state = 7, .external_lex_state = 12}, + [1871] = {.lex_state = 7, .external_lex_state = 13}, + [1872] = {.lex_state = 13, .external_lex_state = 15}, + [1873] = {.lex_state = 7, .external_lex_state = 14}, + [1874] = {.lex_state = 7, .external_lex_state = 14}, + [1875] = {.lex_state = 7, .external_lex_state = 14}, + [1876] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1877] = {.lex_state = 7, .external_lex_state = 13}, + [1878] = {.lex_state = 13, .external_lex_state = 13}, + [1879] = {.lex_state = 7, .external_lex_state = 14}, + [1880] = {.lex_state = 13, .external_lex_state = 9}, + [1881] = {.lex_state = 13, .external_lex_state = 13}, + [1882] = {.lex_state = 7, .external_lex_state = 13}, [1883] = {.lex_state = 7, .external_lex_state = 12}, - [1884] = {.lex_state = 7, .external_lex_state = 12}, - [1885] = {.lex_state = 7, .external_lex_state = 13}, - [1886] = {.lex_state = 52, .external_lex_state = 9}, - [1887] = {.lex_state = 52, .external_lex_state = 14}, - [1888] = {.lex_state = 52, .external_lex_state = 15}, - [1889] = {.lex_state = 52, .external_lex_state = 12}, - [1890] = {.lex_state = 52, .external_lex_state = 12}, - [1891] = {.lex_state = 52, .external_lex_state = 15}, - [1892] = {.lex_state = 7, .external_lex_state = 12}, - [1893] = {.lex_state = 52, .external_lex_state = 14}, - [1894] = {.lex_state = 52, .external_lex_state = 6}, - [1895] = {.lex_state = 52, .external_lex_state = 15}, - [1896] = {.lex_state = 52, .external_lex_state = 15}, - [1897] = {.lex_state = 0, .external_lex_state = 16}, - [1898] = {.lex_state = 52, .external_lex_state = 15}, - [1899] = {.lex_state = 52, .external_lex_state = 15}, - [1900] = {.lex_state = 52, .external_lex_state = 14}, - [1901] = {.lex_state = 7, .external_lex_state = 9}, - [1902] = {.lex_state = 8, .external_lex_state = 9}, - [1903] = {.lex_state = 52, .external_lex_state = 12}, - [1904] = {.lex_state = 52, .external_lex_state = 12}, - [1905] = {.lex_state = 52, .external_lex_state = 13}, - [1906] = {.lex_state = 52, .external_lex_state = 13}, - [1907] = {.lex_state = 52, .external_lex_state = 14}, - [1908] = {.lex_state = 52, .external_lex_state = 14}, - [1909] = {.lex_state = 8, .external_lex_state = 15}, - [1910] = {.lex_state = 7, .external_lex_state = 12}, - [1911] = {.lex_state = 8, .external_lex_state = 13}, - [1912] = {.lex_state = 52, .external_lex_state = 15}, - [1913] = {.lex_state = 52, .external_lex_state = 15}, - [1914] = {.lex_state = 52, .external_lex_state = 15}, - [1915] = {.lex_state = 52, .external_lex_state = 14}, - [1916] = {.lex_state = 52, .external_lex_state = 12}, - [1917] = {.lex_state = 8, .external_lex_state = 9}, - [1918] = {.lex_state = 7, .external_lex_state = 13}, - [1919] = {.lex_state = 8, .external_lex_state = 14}, - [1920] = {.lex_state = 8, .external_lex_state = 9}, - [1921] = {.lex_state = 0, .external_lex_state = 16}, - [1922] = {.lex_state = 8, .external_lex_state = 9}, - [1923] = {.lex_state = 8, .external_lex_state = 14}, - [1924] = {.lex_state = 52, .external_lex_state = 9}, - [1925] = {.lex_state = 52, .external_lex_state = 13}, - [1926] = {.lex_state = 52, .external_lex_state = 12}, - [1927] = {.lex_state = 52, .external_lex_state = 13}, - [1928] = {.lex_state = 52, .external_lex_state = 9}, - [1929] = {.lex_state = 52, .external_lex_state = 12}, - [1930] = {.lex_state = 7, .external_lex_state = 14}, - [1931] = {.lex_state = 52, .external_lex_state = 12}, - [1932] = {.lex_state = 52, .external_lex_state = 14}, - [1933] = {.lex_state = 52, .external_lex_state = 15}, - [1934] = {.lex_state = 52, .external_lex_state = 15}, - [1935] = {.lex_state = 8, .external_lex_state = 15}, - [1936] = {.lex_state = 52, .external_lex_state = 15}, - [1937] = {.lex_state = 52, .external_lex_state = 12}, - [1938] = {.lex_state = 8, .external_lex_state = 9}, - [1939] = {.lex_state = 52, .external_lex_state = 13}, - [1940] = {.lex_state = 7, .external_lex_state = 9}, - [1941] = {.lex_state = 52, .external_lex_state = 13}, - [1942] = {.lex_state = 0, .external_lex_state = 16}, - [1943] = {.lex_state = 8, .external_lex_state = 13}, - [1944] = {.lex_state = 52, .external_lex_state = 12}, - [1945] = {.lex_state = 52, .external_lex_state = 15}, - [1946] = {.lex_state = 52, .external_lex_state = 13}, - [1947] = {.lex_state = 8, .external_lex_state = 15}, - [1948] = {.lex_state = 52, .external_lex_state = 14}, - [1949] = {.lex_state = 52, .external_lex_state = 12}, - [1950] = {.lex_state = 8, .external_lex_state = 13}, - [1951] = {.lex_state = 52, .external_lex_state = 13}, - [1952] = {.lex_state = 8, .external_lex_state = 9}, - [1953] = {.lex_state = 52, .external_lex_state = 13}, - [1954] = {.lex_state = 52, .external_lex_state = 14}, - [1955] = {.lex_state = 52, .external_lex_state = 13}, - [1956] = {.lex_state = 8, .external_lex_state = 9}, - [1957] = {.lex_state = 52, .external_lex_state = 14}, - [1958] = {.lex_state = 8, .external_lex_state = 14}, - [1959] = {.lex_state = 8, .external_lex_state = 14}, - [1960] = {.lex_state = 0, .external_lex_state = 16}, - [1961] = {.lex_state = 0, .external_lex_state = 16}, - [1962] = {.lex_state = 52, .external_lex_state = 14}, - [1963] = {.lex_state = 52, .external_lex_state = 12}, - [1964] = {.lex_state = 52, .external_lex_state = 14}, - [1965] = {.lex_state = 7, .external_lex_state = 9}, - [1966] = {.lex_state = 52, .external_lex_state = 12}, - [1967] = {.lex_state = 8, .external_lex_state = 14}, - [1968] = {.lex_state = 8, .external_lex_state = 14}, - [1969] = {.lex_state = 52, .external_lex_state = 12}, - [1970] = {.lex_state = 8, .external_lex_state = 14}, - [1971] = {.lex_state = 52, .external_lex_state = 13}, - [1972] = {.lex_state = 52, .external_lex_state = 15}, - [1973] = {.lex_state = 0, .external_lex_state = 16}, - [1974] = {.lex_state = 52, .external_lex_state = 14}, - [1975] = {.lex_state = 52, .external_lex_state = 15}, - [1976] = {.lex_state = 52, .external_lex_state = 14}, - [1977] = {.lex_state = 52, .external_lex_state = 15}, - [1978] = {.lex_state = 52, .external_lex_state = 13}, - [1979] = {.lex_state = 52, .external_lex_state = 12}, - [1980] = {.lex_state = 52, .external_lex_state = 15}, - [1981] = {.lex_state = 52, .external_lex_state = 9}, - [1982] = {.lex_state = 52, .external_lex_state = 14}, - [1983] = {.lex_state = 8, .external_lex_state = 9}, - [1984] = {.lex_state = 8, .external_lex_state = 9}, - [1985] = {.lex_state = 52, .external_lex_state = 14}, - [1986] = {.lex_state = 8, .external_lex_state = 9}, - [1987] = {.lex_state = 52, .external_lex_state = 14}, - [1988] = {.lex_state = 8, .external_lex_state = 9}, - [1989] = {.lex_state = 8, .external_lex_state = 14}, - [1990] = {.lex_state = 8, .external_lex_state = 14}, - [1991] = {.lex_state = 52, .external_lex_state = 15}, - [1992] = {.lex_state = 52, .external_lex_state = 14}, - [1993] = {.lex_state = 52, .external_lex_state = 13}, - [1994] = {.lex_state = 52, .external_lex_state = 12}, - [1995] = {.lex_state = 0, .external_lex_state = 16}, - [1996] = {.lex_state = 52, .external_lex_state = 14}, - [1997] = {.lex_state = 8, .external_lex_state = 14}, - [1998] = {.lex_state = 8, .external_lex_state = 13}, - [1999] = {.lex_state = 52, .external_lex_state = 13}, - [2000] = {.lex_state = 52, .external_lex_state = 14}, - [2001] = {.lex_state = 0, .external_lex_state = 16}, - [2002] = {.lex_state = 52, .external_lex_state = 12}, - [2003] = {.lex_state = 8, .external_lex_state = 14}, - [2004] = {.lex_state = 52, .external_lex_state = 15}, - [2005] = {.lex_state = 52, .external_lex_state = 15}, - [2006] = {.lex_state = 52, .external_lex_state = 15}, - [2007] = {.lex_state = 52, .external_lex_state = 12}, - [2008] = {.lex_state = 52, .external_lex_state = 12}, - [2009] = {.lex_state = 52, .external_lex_state = 14}, - [2010] = {.lex_state = 52, .external_lex_state = 14}, - [2011] = {.lex_state = 8, .external_lex_state = 13}, - [2012] = {.lex_state = 52, .external_lex_state = 15}, - [2013] = {.lex_state = 3, .external_lex_state = 12}, - [2014] = {.lex_state = 52, .external_lex_state = 15}, - [2015] = {.lex_state = 52, .external_lex_state = 14}, - [2016] = {.lex_state = 52, .external_lex_state = 12}, - [2017] = {.lex_state = 52, .external_lex_state = 9}, - [2018] = {.lex_state = 52, .external_lex_state = 15}, - [2019] = {.lex_state = 52, .external_lex_state = 15}, - [2020] = {.lex_state = 52, .external_lex_state = 15}, - [2021] = {.lex_state = 52, .external_lex_state = 12}, - [2022] = {.lex_state = 52, .external_lex_state = 15}, - [2023] = {.lex_state = 52, .external_lex_state = 13}, - [2024] = {.lex_state = 8, .external_lex_state = 15}, - [2025] = {.lex_state = 7, .external_lex_state = 9}, - [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 = 8, .external_lex_state = 13}, - [2031] = {.lex_state = 8, .external_lex_state = 13}, - [2032] = {.lex_state = 52, .external_lex_state = 9}, - [2033] = {.lex_state = 52, .external_lex_state = 15}, - [2034] = {.lex_state = 52, .external_lex_state = 12}, - [2035] = {.lex_state = 52, .external_lex_state = 15}, - [2036] = {.lex_state = 52, .external_lex_state = 9}, - [2037] = {.lex_state = 52, .external_lex_state = 9}, - [2038] = {.lex_state = 52, .external_lex_state = 12}, - [2039] = {.lex_state = 3, .external_lex_state = 12}, - [2040] = {.lex_state = 52, .external_lex_state = 15}, - [2041] = {.lex_state = 52, .external_lex_state = 12}, - [2042] = {.lex_state = 52, .external_lex_state = 12}, - [2043] = {.lex_state = 52, .external_lex_state = 15}, - [2044] = {.lex_state = 52, .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 = 12}, - [2049] = {.lex_state = 52, .external_lex_state = 12}, - [2050] = {.lex_state = 52, .external_lex_state = 15}, - [2051] = {.lex_state = 52, .external_lex_state = 15}, - [2052] = {.lex_state = 52, .external_lex_state = 9}, - [2053] = {.lex_state = 52, .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 = 9}, - [2057] = {.lex_state = 52, .external_lex_state = 15}, - [2058] = {.lex_state = 52, .external_lex_state = 13}, - [2059] = {.lex_state = 52, .external_lex_state = 13}, - [2060] = {.lex_state = 52, .external_lex_state = 13}, - [2061] = {.lex_state = 8, .external_lex_state = 15}, - [2062] = {.lex_state = 8, .external_lex_state = 15}, - [2063] = {.lex_state = 52, .external_lex_state = 12}, - [2064] = {.lex_state = 8, .external_lex_state = 13}, - [2065] = {.lex_state = 52, .external_lex_state = 15}, - [2066] = {.lex_state = 52, .external_lex_state = 12}, - [2067] = {.lex_state = 52, .external_lex_state = 15}, - [2068] = {.lex_state = 52, .external_lex_state = 15}, - [2069] = {.lex_state = 52, .external_lex_state = 14}, - [2070] = {.lex_state = 52, .external_lex_state = 12}, - [2071] = {.lex_state = 52, .external_lex_state = 15}, - [2072] = {.lex_state = 52, .external_lex_state = 12}, - [2073] = {.lex_state = 52, .external_lex_state = 12}, - [2074] = {.lex_state = 52, .external_lex_state = 13}, - [2075] = {.lex_state = 52, .external_lex_state = 15}, - [2076] = {.lex_state = 8, .external_lex_state = 13}, - [2077] = {.lex_state = 8, .external_lex_state = 15}, - [2078] = {.lex_state = 8, .external_lex_state = 15}, - [2079] = {.lex_state = 8, .external_lex_state = 13}, - [2080] = {.lex_state = 52, .external_lex_state = 15}, - [2081] = {.lex_state = 52, .external_lex_state = 13}, - [2082] = {.lex_state = 52, .external_lex_state = 12}, - [2083] = {.lex_state = 8, .external_lex_state = 15}, - [2084] = {.lex_state = 8, .external_lex_state = 13}, - [2085] = {.lex_state = 52, .external_lex_state = 13}, - [2086] = {.lex_state = 52, .external_lex_state = 13}, - [2087] = {.lex_state = 52, .external_lex_state = 13}, - [2088] = {.lex_state = 52, .external_lex_state = 12}, - [2089] = {.lex_state = 52, .external_lex_state = 15}, - [2090] = {.lex_state = 8, .external_lex_state = 13}, - [2091] = {.lex_state = 52, .external_lex_state = 15}, - [2092] = {.lex_state = 8, .external_lex_state = 13}, - [2093] = {.lex_state = 52, .external_lex_state = 12}, - [2094] = {.lex_state = 52, .external_lex_state = 15}, - [2095] = {.lex_state = 52, .external_lex_state = 14}, - [2096] = {.lex_state = 52, .external_lex_state = 15}, - [2097] = {.lex_state = 8, .external_lex_state = 13}, - [2098] = {.lex_state = 8, .external_lex_state = 15}, - [2099] = {.lex_state = 52, .external_lex_state = 15}, - [2100] = {.lex_state = 8, .external_lex_state = 9}, - [2101] = {.lex_state = 8, .external_lex_state = 13}, - [2102] = {.lex_state = 52, .external_lex_state = 15}, - [2103] = {.lex_state = 52, .external_lex_state = 15}, - [2104] = {.lex_state = 8, .external_lex_state = 14}, - [2105] = {.lex_state = 52, .external_lex_state = 14}, - [2106] = {.lex_state = 52, .external_lex_state = 14}, - [2107] = {.lex_state = 52, .external_lex_state = 15}, - [2108] = {.lex_state = 52, .external_lex_state = 12}, - [2109] = {.lex_state = 8, .external_lex_state = 15}, - [2110] = {.lex_state = 52, .external_lex_state = 15}, - [2111] = {.lex_state = 52, .external_lex_state = 14}, - [2112] = {.lex_state = 52, .external_lex_state = 15}, - [2113] = {.lex_state = 52, .external_lex_state = 15}, - [2114] = {.lex_state = 52, .external_lex_state = 9}, - [2115] = {.lex_state = 52, .external_lex_state = 15}, - [2116] = {.lex_state = 52, .external_lex_state = 15}, - [2117] = {.lex_state = 3, .external_lex_state = 12}, - [2118] = {.lex_state = 52, .external_lex_state = 15}, - [2119] = {.lex_state = 52, .external_lex_state = 15}, - [2120] = {.lex_state = 52, .external_lex_state = 15}, - [2121] = {.lex_state = 52, .external_lex_state = 14}, - [2122] = {.lex_state = 52, .external_lex_state = 12}, - [2123] = {.lex_state = 52, .external_lex_state = 15}, - [2124] = {.lex_state = 52, .external_lex_state = 14}, - [2125] = {.lex_state = 52, .external_lex_state = 12}, - [2126] = {.lex_state = 52, .external_lex_state = 12}, - [2127] = {.lex_state = 52, .external_lex_state = 13}, - [2128] = {.lex_state = 52, .external_lex_state = 15}, - [2129] = {.lex_state = 52, .external_lex_state = 12}, - [2130] = {.lex_state = 52, .external_lex_state = 12}, - [2131] = {.lex_state = 52, .external_lex_state = 18}, - [2132] = {.lex_state = 52, .external_lex_state = 12}, - [2133] = {.lex_state = 52, .external_lex_state = 12}, - [2134] = {.lex_state = 52, .external_lex_state = 12}, - [2135] = {.lex_state = 52, .external_lex_state = 13}, - [2136] = {.lex_state = 52, .external_lex_state = 12}, - [2137] = {.lex_state = 52, .external_lex_state = 13}, - [2138] = {.lex_state = 52, .external_lex_state = 12}, - [2139] = {.lex_state = 52, .external_lex_state = 12}, - [2140] = {.lex_state = 52, .external_lex_state = 12}, - [2141] = {.lex_state = 52, .external_lex_state = 12}, - [2142] = {.lex_state = 52, .external_lex_state = 12}, - [2143] = {.lex_state = 52, .external_lex_state = 12}, - [2144] = {.lex_state = 52, .external_lex_state = 12}, - [2145] = {.lex_state = 52, .external_lex_state = 12}, - [2146] = {.lex_state = 52, .external_lex_state = 12}, - [2147] = {.lex_state = 52, .external_lex_state = 12}, - [2148] = {.lex_state = 52, .external_lex_state = 12}, - [2149] = {.lex_state = 52, .external_lex_state = 12}, - [2150] = {.lex_state = 52, .external_lex_state = 12}, - [2151] = {.lex_state = 52, .external_lex_state = 12}, - [2152] = {.lex_state = 52, .external_lex_state = 13}, - [2153] = {.lex_state = 52, .external_lex_state = 14}, - [2154] = {.lex_state = 52, .external_lex_state = 13}, - [2155] = {.lex_state = 52, .external_lex_state = 9}, - [2156] = {.lex_state = 52, .external_lex_state = 9}, - [2157] = {.lex_state = 52, .external_lex_state = 9}, - [2158] = {.lex_state = 52, .external_lex_state = 14}, - [2159] = {.lex_state = 52, .external_lex_state = 9}, - [2160] = {.lex_state = 52, .external_lex_state = 14}, - [2161] = {.lex_state = 52, .external_lex_state = 15}, - [2162] = {.lex_state = 52, .external_lex_state = 15}, - [2163] = {.lex_state = 52, .external_lex_state = 14}, - [2164] = {.lex_state = 52, .external_lex_state = 15}, - [2165] = {.lex_state = 52, .external_lex_state = 14}, - [2166] = {.lex_state = 52, .external_lex_state = 13}, - [2167] = {.lex_state = 52, .external_lex_state = 13}, - [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 = 14}, - [2172] = {.lex_state = 52, .external_lex_state = 13}, - [2173] = {.lex_state = 7, .external_lex_state = 15}, - [2174] = {.lex_state = 52, .external_lex_state = 14}, - [2175] = {.lex_state = 52, .external_lex_state = 9}, - [2176] = {.lex_state = 52, .external_lex_state = 14}, - [2177] = {.lex_state = 52, .external_lex_state = 13}, - [2178] = {.lex_state = 52, .external_lex_state = 13}, - [2179] = {.lex_state = 52, .external_lex_state = 13}, - [2180] = {.lex_state = 52, .external_lex_state = 13}, - [2181] = {.lex_state = 52, .external_lex_state = 13}, - [2182] = {.lex_state = 52, .external_lex_state = 13}, - [2183] = {.lex_state = 52, .external_lex_state = 13}, - [2184] = {.lex_state = 52, .external_lex_state = 12}, - [2185] = {.lex_state = 52, .external_lex_state = 13}, - [2186] = {.lex_state = 52, .external_lex_state = 13}, - [2187] = {.lex_state = 52, .external_lex_state = 13}, - [2188] = {.lex_state = 52, .external_lex_state = 13}, - [2189] = {.lex_state = 52, .external_lex_state = 13}, - [2190] = {.lex_state = 52, .external_lex_state = 14}, - [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 = 14}, - [2195] = {.lex_state = 52, .external_lex_state = 15}, - [2196] = {.lex_state = 52, .external_lex_state = 12}, - [2197] = {.lex_state = 52, .external_lex_state = 9}, - [2198] = {.lex_state = 52, .external_lex_state = 14}, - [2199] = {.lex_state = 52, .external_lex_state = 9}, - [2200] = {.lex_state = 52, .external_lex_state = 9}, - [2201] = {.lex_state = 52, .external_lex_state = 15}, - [2202] = {.lex_state = 52, .external_lex_state = 14}, - [2203] = {.lex_state = 52, .external_lex_state = 13}, - [2204] = {.lex_state = 52, .external_lex_state = 14}, - [2205] = {.lex_state = 8, .external_lex_state = 15}, - [2206] = {.lex_state = 52, .external_lex_state = 14}, - [2207] = {.lex_state = 52, .external_lex_state = 18}, - [2208] = {.lex_state = 52, .external_lex_state = 14}, - [2209] = {.lex_state = 52, .external_lex_state = 9}, - [2210] = {.lex_state = 52, .external_lex_state = 14}, - [2211] = {.lex_state = 52, .external_lex_state = 14}, - [2212] = {.lex_state = 52, .external_lex_state = 14}, - [2213] = {.lex_state = 52, .external_lex_state = 14}, - [2214] = {.lex_state = 52, .external_lex_state = 14}, - [2215] = {.lex_state = 52, .external_lex_state = 18}, - [2216] = {.lex_state = 52, .external_lex_state = 9}, - [2217] = {.lex_state = 52, .external_lex_state = 9}, - [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 = 14}, - [2223] = {.lex_state = 52, .external_lex_state = 14}, - [2224] = {.lex_state = 52, .external_lex_state = 12}, - [2225] = {.lex_state = 52, .external_lex_state = 15}, - [2226] = {.lex_state = 52, .external_lex_state = 14}, - [2227] = {.lex_state = 52, .external_lex_state = 14}, - [2228] = {.lex_state = 52, .external_lex_state = 14}, - [2229] = {.lex_state = 52, .external_lex_state = 9}, - [2230] = {.lex_state = 52, .external_lex_state = 9}, - [2231] = {.lex_state = 52, .external_lex_state = 15}, - [2232] = {.lex_state = 52, .external_lex_state = 15}, - [2233] = {.lex_state = 52, .external_lex_state = 14}, - [2234] = {.lex_state = 52, .external_lex_state = 18}, - [2235] = {.lex_state = 52, .external_lex_state = 14}, - [2236] = {.lex_state = 52, .external_lex_state = 14}, - [2237] = {.lex_state = 52, .external_lex_state = 14}, - [2238] = {.lex_state = 52, .external_lex_state = 9}, - [2239] = {.lex_state = 52, .external_lex_state = 9}, - [2240] = {.lex_state = 52, .external_lex_state = 14}, - [2241] = {.lex_state = 52, .external_lex_state = 14}, - [2242] = {.lex_state = 52, .external_lex_state = 14}, - [2243] = {.lex_state = 52, .external_lex_state = 14}, - [2244] = {.lex_state = 52, .external_lex_state = 13}, - [2245] = {.lex_state = 52, .external_lex_state = 9}, - [2246] = {.lex_state = 52, .external_lex_state = 15}, - [2247] = {.lex_state = 52, .external_lex_state = 15}, - [2248] = {.lex_state = 8, .external_lex_state = 15}, - [2249] = {.lex_state = 52, .external_lex_state = 12}, - [2250] = {.lex_state = 52, .external_lex_state = 15}, - [2251] = {.lex_state = 52, .external_lex_state = 18}, - [2252] = {.lex_state = 7, .external_lex_state = 15}, - [2253] = {.lex_state = 8, .external_lex_state = 15}, - [2254] = {.lex_state = 52, .external_lex_state = 12}, - [2255] = {.lex_state = 52, .external_lex_state = 14}, - [2256] = {.lex_state = 52, .external_lex_state = 15}, - [2257] = {.lex_state = 52, .external_lex_state = 9}, - [2258] = {.lex_state = 52, .external_lex_state = 14}, - [2259] = {.lex_state = 52, .external_lex_state = 14}, - [2260] = {.lex_state = 52, .external_lex_state = 14}, - [2261] = {.lex_state = 52, .external_lex_state = 12}, - [2262] = {.lex_state = 52, .external_lex_state = 15}, - [2263] = {.lex_state = 52, .external_lex_state = 12}, - [2264] = {.lex_state = 52, .external_lex_state = 14}, - [2265] = {.lex_state = 52, .external_lex_state = 14}, - [2266] = {.lex_state = 52, .external_lex_state = 13}, - [2267] = {.lex_state = 52, .external_lex_state = 13}, - [2268] = {.lex_state = 52, .external_lex_state = 15}, - [2269] = {.lex_state = 52, .external_lex_state = 14}, - [2270] = {.lex_state = 8, .external_lex_state = 15}, - [2271] = {.lex_state = 52, .external_lex_state = 14}, - [2272] = {.lex_state = 52, .external_lex_state = 12}, - [2273] = {.lex_state = 52, .external_lex_state = 14}, - [2274] = {.lex_state = 52, .external_lex_state = 14}, - [2275] = {.lex_state = 52, .external_lex_state = 14}, - [2276] = {.lex_state = 52, .external_lex_state = 13}, - [2277] = {.lex_state = 52, .external_lex_state = 13}, - [2278] = {.lex_state = 52, .external_lex_state = 12}, - [2279] = {.lex_state = 52, .external_lex_state = 15}, - [2280] = {.lex_state = 52, .external_lex_state = 13}, - [2281] = {.lex_state = 52, .external_lex_state = 12}, - [2282] = {.lex_state = 52, .external_lex_state = 12}, - [2283] = {.lex_state = 52, .external_lex_state = 13}, - [2284] = {.lex_state = 52, .external_lex_state = 13}, - [2285] = {.lex_state = 52, .external_lex_state = 14}, - [2286] = {.lex_state = 52, .external_lex_state = 12}, - [2287] = {.lex_state = 52, .external_lex_state = 12}, - [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 = 12}, - [2292] = {.lex_state = 52, .external_lex_state = 12}, - [2293] = {.lex_state = 52, .external_lex_state = 15}, - [2294] = {.lex_state = 52, .external_lex_state = 14}, - [2295] = {.lex_state = 52, .external_lex_state = 9}, - [2296] = {.lex_state = 52, .external_lex_state = 14}, - [2297] = {.lex_state = 52, .external_lex_state = 15}, - [2298] = {.lex_state = 52, .external_lex_state = 15}, - [2299] = {.lex_state = 52, .external_lex_state = 15}, - [2300] = {.lex_state = 52, .external_lex_state = 9}, - [2301] = {.lex_state = 52, .external_lex_state = 12}, - [2302] = {.lex_state = 52, .external_lex_state = 12}, - [2303] = {.lex_state = 52, .external_lex_state = 14}, - [2304] = {.lex_state = 52, .external_lex_state = 14}, - [2305] = {.lex_state = 52, .external_lex_state = 9}, - [2306] = {.lex_state = 52, .external_lex_state = 12}, - [2307] = {.lex_state = 52, .external_lex_state = 9}, - [2308] = {.lex_state = 3, .external_lex_state = 12}, - [2309] = {.lex_state = 52, .external_lex_state = 14}, - [2310] = {.lex_state = 52, .external_lex_state = 12}, - [2311] = {.lex_state = 52, .external_lex_state = 19}, - [2312] = {.lex_state = 52, .external_lex_state = 14}, - [2313] = {.lex_state = 52, .external_lex_state = 14}, - [2314] = {.lex_state = 52, .external_lex_state = 13}, - [2315] = {.lex_state = 52, .external_lex_state = 14}, - [2316] = {.lex_state = 52, .external_lex_state = 13}, - [2317] = {.lex_state = 52, .external_lex_state = 14}, - [2318] = {.lex_state = 52, .external_lex_state = 14}, - [2319] = {.lex_state = 52, .external_lex_state = 14}, - [2320] = {.lex_state = 8, .external_lex_state = 15}, - [2321] = {.lex_state = 52, .external_lex_state = 13}, - [2322] = {.lex_state = 52, .external_lex_state = 13}, - [2323] = {.lex_state = 52, .external_lex_state = 15}, - [2324] = {.lex_state = 52, .external_lex_state = 13}, - [2325] = {.lex_state = 52, .external_lex_state = 9}, - [2326] = {.lex_state = 52, .external_lex_state = 14}, - [2327] = {.lex_state = 9, .external_lex_state = 17}, - [2328] = {.lex_state = 52, .external_lex_state = 12}, - [2329] = {.lex_state = 52, .external_lex_state = 19}, - [2330] = {.lex_state = 52, .external_lex_state = 15}, - [2331] = {.lex_state = 52, .external_lex_state = 14}, - [2332] = {.lex_state = 52, .external_lex_state = 19}, - [2333] = {.lex_state = 52, .external_lex_state = 13}, - [2334] = {.lex_state = 52, .external_lex_state = 12}, - [2335] = {.lex_state = 52, .external_lex_state = 12}, - [2336] = {.lex_state = 3, .external_lex_state = 12}, - [2337] = {.lex_state = 3, .external_lex_state = 12}, - [2338] = {.lex_state = 52, .external_lex_state = 12}, - [2339] = {.lex_state = 9, .external_lex_state = 17}, - [2340] = {.lex_state = 52, .external_lex_state = 14}, - [2341] = {.lex_state = 52, .external_lex_state = 14}, - [2342] = {.lex_state = 3, .external_lex_state = 12}, - [2343] = {.lex_state = 52, .external_lex_state = 15}, - [2344] = {.lex_state = 52, .external_lex_state = 9}, - [2345] = {.lex_state = 52, .external_lex_state = 15}, - [2346] = {.lex_state = 52, .external_lex_state = 9}, - [2347] = {.lex_state = 52, .external_lex_state = 12}, - [2348] = {.lex_state = 52, .external_lex_state = 14}, - [2349] = {.lex_state = 52, .external_lex_state = 12}, - [2350] = {.lex_state = 52, .external_lex_state = 13}, - [2351] = {.lex_state = 52, .external_lex_state = 13}, - [2352] = {.lex_state = 52, .external_lex_state = 9}, - [2353] = {.lex_state = 52, .external_lex_state = 13}, - [2354] = {.lex_state = 52, .external_lex_state = 12}, - [2355] = {.lex_state = 52, .external_lex_state = 14}, - [2356] = {.lex_state = 8, .external_lex_state = 15}, - [2357] = {.lex_state = 52, .external_lex_state = 14}, - [2358] = {.lex_state = 52, .external_lex_state = 14}, - [2359] = {.lex_state = 52, .external_lex_state = 13}, - [2360] = {.lex_state = 52, .external_lex_state = 12}, - [2361] = {.lex_state = 52, .external_lex_state = 12}, - [2362] = {.lex_state = 52, .external_lex_state = 14}, - [2363] = {.lex_state = 52, .external_lex_state = 19}, - [2364] = {.lex_state = 52, .external_lex_state = 14}, - [2365] = {.lex_state = 52, .external_lex_state = 13}, - [2366] = {.lex_state = 52, .external_lex_state = 13}, - [2367] = {.lex_state = 52, .external_lex_state = 9}, - [2368] = {.lex_state = 52, .external_lex_state = 14}, - [2369] = {.lex_state = 52, .external_lex_state = 15}, - [2370] = {.lex_state = 52, .external_lex_state = 14}, - [2371] = {.lex_state = 52, .external_lex_state = 14}, - [2372] = {.lex_state = 52, .external_lex_state = 14}, - [2373] = {.lex_state = 52, .external_lex_state = 14}, - [2374] = {.lex_state = 52, .external_lex_state = 9}, - [2375] = {.lex_state = 52, .external_lex_state = 13}, - [2376] = {.lex_state = 52, .external_lex_state = 14}, - [2377] = {.lex_state = 52, .external_lex_state = 13}, - [2378] = {.lex_state = 52, .external_lex_state = 13}, - [2379] = {.lex_state = 52, .external_lex_state = 12}, - [2380] = {.lex_state = 52, .external_lex_state = 13}, - [2381] = {.lex_state = 52, .external_lex_state = 9}, - [2382] = {.lex_state = 52, .external_lex_state = 14}, - [2383] = {.lex_state = 52, .external_lex_state = 14}, - [2384] = {.lex_state = 52, .external_lex_state = 12}, - [2385] = {.lex_state = 52, .external_lex_state = 14}, - [2386] = {.lex_state = 52, .external_lex_state = 14}, - [2387] = {.lex_state = 52, .external_lex_state = 15}, - [2388] = {.lex_state = 52, .external_lex_state = 13}, - [2389] = {.lex_state = 52, .external_lex_state = 14}, - [2390] = {.lex_state = 52, .external_lex_state = 13}, - [2391] = {.lex_state = 52, .external_lex_state = 14}, - [2392] = {.lex_state = 3, .external_lex_state = 12}, - [2393] = {.lex_state = 52, .external_lex_state = 14}, - [2394] = {.lex_state = 52, .external_lex_state = 13}, - [2395] = {.lex_state = 52, .external_lex_state = 13}, - [2396] = {.lex_state = 52, .external_lex_state = 14}, - [2397] = {.lex_state = 8, .external_lex_state = 15}, - [2398] = {.lex_state = 3, .external_lex_state = 12}, - [2399] = {.lex_state = 3, .external_lex_state = 12}, - [2400] = {.lex_state = 52, .external_lex_state = 15}, - [2401] = {.lex_state = 52, .external_lex_state = 14}, - [2402] = {.lex_state = 9, .external_lex_state = 17}, - [2403] = {.lex_state = 52, .external_lex_state = 9}, - [2404] = {.lex_state = 52, .external_lex_state = 14}, - [2405] = {.lex_state = 52, .external_lex_state = 13}, - [2406] = {.lex_state = 52, .external_lex_state = 12}, - [2407] = {.lex_state = 52, .external_lex_state = 13}, - [2408] = {.lex_state = 52, .external_lex_state = 9}, - [2409] = {.lex_state = 52, .external_lex_state = 12}, - [2410] = {.lex_state = 52, .external_lex_state = 14}, - [2411] = {.lex_state = 52, .external_lex_state = 12}, - [2412] = {.lex_state = 52, .external_lex_state = 14}, - [2413] = {.lex_state = 52, .external_lex_state = 14}, - [2414] = {.lex_state = 52, .external_lex_state = 13}, - [2415] = {.lex_state = 52, .external_lex_state = 15}, - [2416] = {.lex_state = 52, .external_lex_state = 14}, - [2417] = {.lex_state = 52, .external_lex_state = 14}, - [2418] = {.lex_state = 52, .external_lex_state = 14}, - [2419] = {.lex_state = 52, .external_lex_state = 14}, - [2420] = {.lex_state = 52, .external_lex_state = 13}, - [2421] = {.lex_state = 52, .external_lex_state = 13}, - [2422] = {.lex_state = 52, .external_lex_state = 14}, - [2423] = {.lex_state = 52, .external_lex_state = 12}, - [2424] = {.lex_state = 52, .external_lex_state = 14}, - [2425] = {.lex_state = 52, .external_lex_state = 12}, - [2426] = {.lex_state = 52, .external_lex_state = 14}, - [2427] = {.lex_state = 9, .external_lex_state = 17}, - [2428] = {.lex_state = 52, .external_lex_state = 14}, - [2429] = {.lex_state = 52, .external_lex_state = 9}, - [2430] = {.lex_state = 52, .external_lex_state = 14}, - [2431] = {.lex_state = 52, .external_lex_state = 9}, - [2432] = {.lex_state = 52, .external_lex_state = 9}, - [2433] = {.lex_state = 52, .external_lex_state = 12}, - [2434] = {.lex_state = 52, .external_lex_state = 9}, - [2435] = {.lex_state = 52, .external_lex_state = 12}, - [2436] = {.lex_state = 52, .external_lex_state = 9}, - [2437] = {.lex_state = 52, .external_lex_state = 14}, - [2438] = {.lex_state = 52, .external_lex_state = 14}, - [2439] = {.lex_state = 52, .external_lex_state = 14}, - [2440] = {.lex_state = 52, .external_lex_state = 13}, - [2441] = {.lex_state = 52, .external_lex_state = 15}, - [2442] = {.lex_state = 52, .external_lex_state = 15}, - [2443] = {.lex_state = 52, .external_lex_state = 14}, - [2444] = {.lex_state = 52, .external_lex_state = 14}, - [2445] = {.lex_state = 52, .external_lex_state = 13}, - [2446] = {.lex_state = 52, .external_lex_state = 13}, - [2447] = {.lex_state = 52, .external_lex_state = 13}, - [2448] = {.lex_state = 52, .external_lex_state = 9}, - [2449] = {.lex_state = 52, .external_lex_state = 19}, - [2450] = {.lex_state = 52, .external_lex_state = 13}, - [2451] = {.lex_state = 52, .external_lex_state = 13}, - [2452] = {.lex_state = 52, .external_lex_state = 13}, - [2453] = {.lex_state = 52, .external_lex_state = 14}, - [2454] = {.lex_state = 52, .external_lex_state = 14}, - [2455] = {.lex_state = 52, .external_lex_state = 13}, - [2456] = {.lex_state = 52, .external_lex_state = 13}, - [2457] = {.lex_state = 52, .external_lex_state = 9}, - [2458] = {.lex_state = 52, .external_lex_state = 13}, - [2459] = {.lex_state = 52, .external_lex_state = 13}, - [2460] = {.lex_state = 52, .external_lex_state = 13}, - [2461] = {.lex_state = 52, .external_lex_state = 13}, - [2462] = {.lex_state = 52, .external_lex_state = 13}, - [2463] = {.lex_state = 52, .external_lex_state = 9}, - [2464] = {.lex_state = 52, .external_lex_state = 14}, - [2465] = {.lex_state = 3, .external_lex_state = 12}, - [2466] = {.lex_state = 52, .external_lex_state = 15}, - [2467] = {.lex_state = 52, .external_lex_state = 13}, - [2468] = {.lex_state = 52, .external_lex_state = 15}, - [2469] = {.lex_state = 52, .external_lex_state = 15}, - [2470] = {.lex_state = 52, .external_lex_state = 14}, - [2471] = {.lex_state = 52, .external_lex_state = 15}, - [2472] = {.lex_state = 52, .external_lex_state = 9}, - [2473] = {.lex_state = 52, .external_lex_state = 15}, - [2474] = {.lex_state = 8, .external_lex_state = 15}, - [2475] = {.lex_state = 52, .external_lex_state = 12}, - [2476] = {.lex_state = 8, .external_lex_state = 15}, - [2477] = {.lex_state = 8, .external_lex_state = 15}, - [2478] = {.lex_state = 52, .external_lex_state = 12}, - [2479] = {.lex_state = 52, .external_lex_state = 12}, - [2480] = {.lex_state = 52, .external_lex_state = 12}, - [2481] = {.lex_state = 52, .external_lex_state = 13}, - [2482] = {.lex_state = 52, .external_lex_state = 14}, - [2483] = {.lex_state = 52, .external_lex_state = 15}, - [2484] = {.lex_state = 52, .external_lex_state = 15}, - [2485] = {.lex_state = 52, .external_lex_state = 9}, - [2486] = {.lex_state = 52, .external_lex_state = 15}, - [2487] = {.lex_state = 3, .external_lex_state = 12}, - [2488] = {.lex_state = 52, .external_lex_state = 14}, - [2489] = {.lex_state = 52, .external_lex_state = 14}, - [2490] = {.lex_state = 52, .external_lex_state = 19}, - [2491] = {.lex_state = 52, .external_lex_state = 15}, - [2492] = {.lex_state = 52, .external_lex_state = 12}, - [2493] = {.lex_state = 52, .external_lex_state = 12}, - [2494] = {.lex_state = 52, .external_lex_state = 19}, - [2495] = {.lex_state = 52, .external_lex_state = 14}, - [2496] = {.lex_state = 52, .external_lex_state = 13}, - [2497] = {.lex_state = 52, .external_lex_state = 15}, - [2498] = {.lex_state = 52, .external_lex_state = 15}, - [2499] = {.lex_state = 52, .external_lex_state = 14}, - [2500] = {.lex_state = 52, .external_lex_state = 14}, - [2501] = {.lex_state = 52, .external_lex_state = 14}, - [2502] = {.lex_state = 52, .external_lex_state = 14}, - [2503] = {.lex_state = 52, .external_lex_state = 13}, - [2504] = {.lex_state = 9, .external_lex_state = 17}, - [2505] = {.lex_state = 52, .external_lex_state = 13}, - [2506] = {.lex_state = 52, .external_lex_state = 14}, - [2507] = {.lex_state = 52, .external_lex_state = 15}, - [2508] = {.lex_state = 52, .external_lex_state = 12}, - [2509] = {.lex_state = 52, .external_lex_state = 19}, - [2510] = {.lex_state = 52, .external_lex_state = 15}, - [2511] = {.lex_state = 52, .external_lex_state = 15}, - [2512] = {.lex_state = 52, .external_lex_state = 14}, - [2513] = {.lex_state = 52, .external_lex_state = 14}, - [2514] = {.lex_state = 52, .external_lex_state = 15}, - [2515] = {.lex_state = 52, .external_lex_state = 15}, - [2516] = {.lex_state = 52, .external_lex_state = 14}, - [2517] = {.lex_state = 52, .external_lex_state = 9}, - [2518] = {.lex_state = 52, .external_lex_state = 15}, - [2519] = {.lex_state = 52, .external_lex_state = 9}, - [2520] = {.lex_state = 9, .external_lex_state = 15}, - [2521] = {.lex_state = 52, .external_lex_state = 18}, - [2522] = {.lex_state = 52, .external_lex_state = 9}, - [2523] = {.lex_state = 52, .external_lex_state = 14}, - [2524] = {.lex_state = 52, .external_lex_state = 15}, - [2525] = {.lex_state = 52, .external_lex_state = 13}, - [2526] = {.lex_state = 52, .external_lex_state = 12}, - [2527] = {.lex_state = 9, .external_lex_state = 15}, - [2528] = {.lex_state = 52, .external_lex_state = 18}, - [2529] = {.lex_state = 52, .external_lex_state = 18}, - [2530] = {.lex_state = 52, .external_lex_state = 18}, - [2531] = {.lex_state = 52, .external_lex_state = 15}, - [2532] = {.lex_state = 52, .external_lex_state = 18}, - [2533] = {.lex_state = 52, .external_lex_state = 15}, - [2534] = {.lex_state = 52, .external_lex_state = 15}, - [2535] = {.lex_state = 52, .external_lex_state = 13}, - [2536] = {.lex_state = 52, .external_lex_state = 15}, - [2537] = {.lex_state = 52, .external_lex_state = 12}, - [2538] = {.lex_state = 52, .external_lex_state = 12}, - [2539] = {.lex_state = 52, .external_lex_state = 18}, - [2540] = {.lex_state = 52, .external_lex_state = 18}, - [2541] = {.lex_state = 52, .external_lex_state = 15}, - [2542] = {.lex_state = 52, .external_lex_state = 12}, - [2543] = {.lex_state = 52, .external_lex_state = 15}, - [2544] = {.lex_state = 52, .external_lex_state = 12}, - [2545] = {.lex_state = 52, .external_lex_state = 14}, - [2546] = {.lex_state = 52, .external_lex_state = 15}, - [2547] = {.lex_state = 52, .external_lex_state = 14}, - [2548] = {.lex_state = 52, .external_lex_state = 13}, - [2549] = {.lex_state = 52, .external_lex_state = 14}, - [2550] = {.lex_state = 52, .external_lex_state = 14}, - [2551] = {.lex_state = 52, .external_lex_state = 14}, - [2552] = {.lex_state = 52, .external_lex_state = 18}, - [2553] = {.lex_state = 52, .external_lex_state = 15}, - [2554] = {.lex_state = 52, .external_lex_state = 18}, - [2555] = {.lex_state = 52, .external_lex_state = 13}, - [2556] = {.lex_state = 52, .external_lex_state = 15}, - [2557] = {.lex_state = 52, .external_lex_state = 9}, - [2558] = {.lex_state = 52, .external_lex_state = 9}, - [2559] = {.lex_state = 52, .external_lex_state = 15}, - [2560] = {.lex_state = 52, .external_lex_state = 15}, - [2561] = {.lex_state = 52, .external_lex_state = 13}, - [2562] = {.lex_state = 52, .external_lex_state = 9}, - [2563] = {.lex_state = 52, .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 = 9}, - [2567] = {.lex_state = 52, .external_lex_state = 18}, - [2568] = {.lex_state = 52, .external_lex_state = 9}, - [2569] = {.lex_state = 52, .external_lex_state = 18}, - [2570] = {.lex_state = 52, .external_lex_state = 9}, - [2571] = {.lex_state = 52, .external_lex_state = 14}, - [2572] = {.lex_state = 9, .external_lex_state = 15}, - [2573] = {.lex_state = 52, .external_lex_state = 18}, - [2574] = {.lex_state = 52, .external_lex_state = 18}, - [2575] = {.lex_state = 52, .external_lex_state = 15}, - [2576] = {.lex_state = 52, .external_lex_state = 18}, - [2577] = {.lex_state = 52, .external_lex_state = 9}, - [2578] = {.lex_state = 52, .external_lex_state = 9}, - [2579] = {.lex_state = 52, .external_lex_state = 14}, - [2580] = {.lex_state = 52, .external_lex_state = 14}, - [2581] = {.lex_state = 52, .external_lex_state = 15}, - [2582] = {.lex_state = 52, .external_lex_state = 18}, - [2583] = {.lex_state = 52, .external_lex_state = 9}, - [2584] = {.lex_state = 52, .external_lex_state = 13}, - [2585] = {.lex_state = 9, .external_lex_state = 15}, - [2586] = {.lex_state = 9, .external_lex_state = 15}, - [2587] = {.lex_state = 9, .external_lex_state = 15}, - [2588] = {.lex_state = 9, .external_lex_state = 15}, - [2589] = {.lex_state = 9, .external_lex_state = 15}, - [2590] = {.lex_state = 52, .external_lex_state = 15}, - [2591] = {.lex_state = 52, .external_lex_state = 9}, - [2592] = {.lex_state = 52, .external_lex_state = 15}, - [2593] = {.lex_state = 52, .external_lex_state = 18}, - [2594] = {.lex_state = 52, .external_lex_state = 15}, - [2595] = {.lex_state = 52, .external_lex_state = 9}, - [2596] = {.lex_state = 52, .external_lex_state = 13}, - [2597] = {.lex_state = 52, .external_lex_state = 14}, - [2598] = {.lex_state = 52, .external_lex_state = 9}, - [2599] = {.lex_state = 52, .external_lex_state = 13}, - [2600] = {.lex_state = 9, .external_lex_state = 15}, - [2601] = {.lex_state = 52, .external_lex_state = 14}, - [2602] = {.lex_state = 52, .external_lex_state = 15}, - [2603] = {.lex_state = 52, .external_lex_state = 18}, - [2604] = {.lex_state = 52, .external_lex_state = 9}, - [2605] = {.lex_state = 52, .external_lex_state = 18}, - [2606] = {.lex_state = 52, .external_lex_state = 14}, - [2607] = {.lex_state = 52, .external_lex_state = 15}, - [2608] = {.lex_state = 52, .external_lex_state = 9}, - [2609] = {.lex_state = 52, .external_lex_state = 15}, - [2610] = {.lex_state = 52, .external_lex_state = 15}, - [2611] = {.lex_state = 52, .external_lex_state = 14}, - [2612] = {.lex_state = 52, .external_lex_state = 13}, - [2613] = {.lex_state = 52, .external_lex_state = 9}, - [2614] = {.lex_state = 52, .external_lex_state = 15}, - [2615] = {.lex_state = 52, .external_lex_state = 14}, - [2616] = {.lex_state = 52, .external_lex_state = 12}, - [2617] = {.lex_state = 52, .external_lex_state = 12}, - [2618] = {.lex_state = 52, .external_lex_state = 13}, - [2619] = {.lex_state = 52, .external_lex_state = 12}, - [2620] = {.lex_state = 52, .external_lex_state = 15}, - [2621] = {.lex_state = 52, .external_lex_state = 14}, - [2622] = {.lex_state = 52, .external_lex_state = 12}, - [2623] = {.lex_state = 52, .external_lex_state = 15}, - [2624] = {.lex_state = 52, .external_lex_state = 15}, - [2625] = {.lex_state = 52, .external_lex_state = 15}, - [2626] = {.lex_state = 52, .external_lex_state = 15}, - [2627] = {.lex_state = 52, .external_lex_state = 15}, - [2628] = {.lex_state = 52, .external_lex_state = 14}, - [2629] = {.lex_state = 52, .external_lex_state = 13}, - [2630] = {.lex_state = 4, .external_lex_state = 15}, - [2631] = {.lex_state = 52, .external_lex_state = 15}, - [2632] = {.lex_state = 52, .external_lex_state = 12}, - [2633] = {.lex_state = 52, .external_lex_state = 12}, - [2634] = {.lex_state = 52, .external_lex_state = 15}, - [2635] = {.lex_state = 52, .external_lex_state = 14}, - [2636] = {.lex_state = 52, .external_lex_state = 14}, - [2637] = {.lex_state = 52, .external_lex_state = 15}, - [2638] = {.lex_state = 52, .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 = 12}, - [2642] = {.lex_state = 52, .external_lex_state = 14}, - [2643] = {.lex_state = 52, .external_lex_state = 14}, - [2644] = {.lex_state = 52, .external_lex_state = 14}, - [2645] = {.lex_state = 4, .external_lex_state = 15}, - [2646] = {.lex_state = 52, .external_lex_state = 12}, - [2647] = {.lex_state = 52, .external_lex_state = 13}, - [2648] = {.lex_state = 52, .external_lex_state = 12}, - [2649] = {.lex_state = 4, .external_lex_state = 15}, - [2650] = {.lex_state = 52, .external_lex_state = 14}, - [2651] = {.lex_state = 52, .external_lex_state = 15}, - [2652] = {.lex_state = 52, .external_lex_state = 13}, - [2653] = {.lex_state = 52, .external_lex_state = 15}, - [2654] = {.lex_state = 52, .external_lex_state = 12}, - [2655] = {.lex_state = 52, .external_lex_state = 15}, - [2656] = {.lex_state = 52, .external_lex_state = 12}, - [2657] = {.lex_state = 52, .external_lex_state = 15}, - [2658] = {.lex_state = 52, .external_lex_state = 14}, - [2659] = {.lex_state = 52, .external_lex_state = 14}, - [2660] = {.lex_state = 52, .external_lex_state = 15}, - [2661] = {.lex_state = 52, .external_lex_state = 15}, - [2662] = {.lex_state = 52, .external_lex_state = 15}, - [2663] = {.lex_state = 52, .external_lex_state = 12}, - [2664] = {.lex_state = 52, .external_lex_state = 14}, - [2665] = {.lex_state = 52, .external_lex_state = 13}, - [2666] = {.lex_state = 52, .external_lex_state = 13}, - [2667] = {.lex_state = 52, .external_lex_state = 13}, - [2668] = {.lex_state = 52, .external_lex_state = 14}, - [2669] = {.lex_state = 52, .external_lex_state = 15}, - [2670] = {.lex_state = 52, .external_lex_state = 15}, - [2671] = {.lex_state = 52, .external_lex_state = 12}, - [2672] = {.lex_state = 4, .external_lex_state = 15}, - [2673] = {.lex_state = 52, .external_lex_state = 14}, - [2674] = {.lex_state = 52, .external_lex_state = 12}, - [2675] = {.lex_state = 52, .external_lex_state = 15}, - [2676] = {.lex_state = 52, .external_lex_state = 12}, - [2677] = {.lex_state = 52, .external_lex_state = 12}, - [2678] = {.lex_state = 4, .external_lex_state = 15}, - [2679] = {.lex_state = 52, .external_lex_state = 15}, - [2680] = {.lex_state = 52, .external_lex_state = 15}, - [2681] = {.lex_state = 52, .external_lex_state = 15}, - [2682] = {.lex_state = 52, .external_lex_state = 15}, - [2683] = {.lex_state = 52, .external_lex_state = 14}, - [2684] = {.lex_state = 4, .external_lex_state = 15}, - [2685] = {.lex_state = 52, .external_lex_state = 13}, - [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 = 13}, - [2690] = {.lex_state = 52, .external_lex_state = 12}, - [2691] = {.lex_state = 52, .external_lex_state = 14}, - [2692] = {.lex_state = 52, .external_lex_state = 14}, - [2693] = {.lex_state = 52, .external_lex_state = 15}, - [2694] = {.lex_state = 52, .external_lex_state = 14}, - [2695] = {.lex_state = 52, .external_lex_state = 13}, - [2696] = {.lex_state = 52, .external_lex_state = 15}, - [2697] = {.lex_state = 52, .external_lex_state = 15}, - [2698] = {.lex_state = 52, .external_lex_state = 15}, - [2699] = {.lex_state = 52, .external_lex_state = 12}, - [2700] = {.lex_state = 52, .external_lex_state = 15}, - [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 = 14}, - [2705] = {.lex_state = 52, .external_lex_state = 15}, - [2706] = {.lex_state = 52, .external_lex_state = 14}, - [2707] = {.lex_state = 52, .external_lex_state = 15}, - [2708] = {.lex_state = 52, .external_lex_state = 14}, - [2709] = {.lex_state = 52, .external_lex_state = 15}, - [2710] = {.lex_state = 52, .external_lex_state = 15}, - [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}, - [2715] = {.lex_state = 52, .external_lex_state = 14}, - [2716] = {.lex_state = 52, .external_lex_state = 15}, - [2717] = {.lex_state = 52, .external_lex_state = 15}, - [2718] = {.lex_state = 52, .external_lex_state = 13}, - [2719] = {.lex_state = 52, .external_lex_state = 13}, - [2720] = {.lex_state = 52, .external_lex_state = 12}, - [2721] = {.lex_state = 52, .external_lex_state = 15}, - [2722] = {.lex_state = 52, .external_lex_state = 13}, - [2723] = {.lex_state = 52, .external_lex_state = 13}, - [2724] = {.lex_state = 52, .external_lex_state = 13}, - [2725] = {.lex_state = 52, .external_lex_state = 12}, - [2726] = {.lex_state = 52, .external_lex_state = 15}, - [2727] = {.lex_state = 52, .external_lex_state = 15}, - [2728] = {.lex_state = 52, .external_lex_state = 15}, - [2729] = {.lex_state = 52, .external_lex_state = 12}, - [2730] = {.lex_state = 52, .external_lex_state = 14}, - [2731] = {.lex_state = 52, .external_lex_state = 12}, - [2732] = {.lex_state = 52, .external_lex_state = 15}, - [2733] = {.lex_state = 52, .external_lex_state = 15}, - [2734] = {.lex_state = 52, .external_lex_state = 15}, - [2735] = {.lex_state = 52, .external_lex_state = 15}, - [2736] = {.lex_state = 52, .external_lex_state = 15}, - [2737] = {.lex_state = 52, .external_lex_state = 15}, - [2738] = {.lex_state = 52, .external_lex_state = 15}, - [2739] = {.lex_state = 52, .external_lex_state = 12}, - [2740] = {.lex_state = 52, .external_lex_state = 12}, - [2741] = {.lex_state = 52, .external_lex_state = 15}, - [2742] = {.lex_state = 52, .external_lex_state = 15}, - [2743] = {.lex_state = 52, .external_lex_state = 15}, - [2744] = {.lex_state = 52, .external_lex_state = 12}, - [2745] = {.lex_state = 52, .external_lex_state = 15}, - [2746] = {.lex_state = 52, .external_lex_state = 15}, - [2747] = {.lex_state = 52, .external_lex_state = 15}, - [2748] = {.lex_state = 52, .external_lex_state = 12}, - [2749] = {.lex_state = 52, .external_lex_state = 14}, - [2750] = {.lex_state = 52, .external_lex_state = 15}, - [2751] = {.lex_state = 52, .external_lex_state = 15}, - [2752] = {.lex_state = 52, .external_lex_state = 12}, - [2753] = {.lex_state = 52, .external_lex_state = 12}, - [2754] = {.lex_state = 52, .external_lex_state = 15}, - [2755] = {.lex_state = 52, .external_lex_state = 15}, - [2756] = {.lex_state = 52, .external_lex_state = 15}, - [2757] = {.lex_state = 52, .external_lex_state = 15}, - [2758] = {.lex_state = 52, .external_lex_state = 12}, - [2759] = {.lex_state = 52, .external_lex_state = 13}, - [2760] = {.lex_state = 52, .external_lex_state = 15}, - [2761] = {.lex_state = 52, .external_lex_state = 13}, - [2762] = {.lex_state = 52, .external_lex_state = 13}, - [2763] = {.lex_state = 52, .external_lex_state = 12}, - [2764] = {.lex_state = 52, .external_lex_state = 12}, - [2765] = {.lex_state = 52, .external_lex_state = 15}, - [2766] = {.lex_state = 52, .external_lex_state = 14}, - [2767] = {.lex_state = 52, .external_lex_state = 15}, - [2768] = {.lex_state = 52, .external_lex_state = 15}, - [2769] = {.lex_state = 52, .external_lex_state = 12}, - [2770] = {.lex_state = 52, .external_lex_state = 14}, - [2771] = {.lex_state = 52, .external_lex_state = 15}, - [2772] = {.lex_state = 52, .external_lex_state = 15}, - [2773] = {.lex_state = 52, .external_lex_state = 14}, - [2774] = {.lex_state = 52, .external_lex_state = 15}, - [2775] = {.lex_state = 52, .external_lex_state = 15}, - [2776] = {.lex_state = 52, .external_lex_state = 13}, - [2777] = {.lex_state = 52, .external_lex_state = 15}, - [2778] = {.lex_state = 52, .external_lex_state = 14}, - [2779] = {.lex_state = 52, .external_lex_state = 12}, - [2780] = {.lex_state = 52, .external_lex_state = 14}, - [2781] = {.lex_state = 4, .external_lex_state = 15}, - [2782] = {.lex_state = 52, .external_lex_state = 14}, - [2783] = {.lex_state = 52, .external_lex_state = 15}, - [2784] = {.lex_state = 52, .external_lex_state = 15}, - [2785] = {.lex_state = 52, .external_lex_state = 12}, - [2786] = {.lex_state = 4, .external_lex_state = 15}, - [2787] = {.lex_state = 52, .external_lex_state = 15}, - [2788] = {.lex_state = 52, .external_lex_state = 12}, - [2789] = {.lex_state = 52, .external_lex_state = 12}, - [2790] = {.lex_state = 52, .external_lex_state = 14}, - [2791] = {.lex_state = 52, .external_lex_state = 12}, - [2792] = {.lex_state = 52, .external_lex_state = 12}, - [2793] = {.lex_state = 52, .external_lex_state = 15}, - [2794] = {.lex_state = 52, .external_lex_state = 15}, - [2795] = {.lex_state = 52, .external_lex_state = 15}, - [2796] = {.lex_state = 52, .external_lex_state = 15}, - [2797] = {.lex_state = 52, .external_lex_state = 15}, - [2798] = {.lex_state = 52, .external_lex_state = 15}, - [2799] = {.lex_state = 52, .external_lex_state = 13}, - [2800] = {.lex_state = 52, .external_lex_state = 15}, - [2801] = {.lex_state = 52, .external_lex_state = 15}, - [2802] = {.lex_state = 52, .external_lex_state = 15}, - [2803] = {.lex_state = 52, .external_lex_state = 15}, - [2804] = {.lex_state = 52, .external_lex_state = 15}, - [2805] = {.lex_state = 52, .external_lex_state = 15}, - [2806] = {.lex_state = 52, .external_lex_state = 15}, - [2807] = {.lex_state = 52, .external_lex_state = 12}, - [2808] = {.lex_state = 52, .external_lex_state = 15}, + [1884] = {.lex_state = 7, .external_lex_state = 13}, + [1885] = {.lex_state = 13, .external_lex_state = 15}, + [1886] = {.lex_state = 7, .external_lex_state = 14}, + [1887] = {.lex_state = 7, .external_lex_state = 14}, + [1888] = {.lex_state = 13, .external_lex_state = 9}, + [1889] = {.lex_state = 13, .external_lex_state = 9}, + [1890] = {.lex_state = 7, .external_lex_state = 13}, + [1891] = {.lex_state = 13, .external_lex_state = 15}, + [1892] = {.lex_state = 13, .external_lex_state = 15}, + [1893] = {.lex_state = 7, .external_lex_state = 9}, + [1894] = {.lex_state = 0, .external_lex_state = 16}, + [1895] = {.lex_state = 7, .external_lex_state = 12}, + [1896] = {.lex_state = 13, .external_lex_state = 15}, + [1897] = {.lex_state = 13, .external_lex_state = 9}, + [1898] = {.lex_state = 7, .external_lex_state = 13}, + [1899] = {.lex_state = 13, .external_lex_state = 14}, + [1900] = {.lex_state = 13, .external_lex_state = 15}, + [1901] = {.lex_state = 13, .external_lex_state = 15}, + [1902] = {.lex_state = 13, .external_lex_state = 14}, + [1903] = {.lex_state = 7, .external_lex_state = 14}, + [1904] = {.lex_state = 13, .external_lex_state = 15}, + [1905] = {.lex_state = 0, .external_lex_state = 16}, + [1906] = {.lex_state = 7, .external_lex_state = 13}, + [1907] = {.lex_state = 13, .external_lex_state = 15}, + [1908] = {.lex_state = 7, .external_lex_state = 9}, + [1909] = {.lex_state = 7, .external_lex_state = 13}, + [1910] = {.lex_state = 7, .external_lex_state = 14}, + [1911] = {.lex_state = 13, .external_lex_state = 13}, + [1912] = {.lex_state = 0, .external_lex_state = 16}, + [1913] = {.lex_state = 7, .external_lex_state = 12}, + [1914] = {.lex_state = 7, .external_lex_state = 13}, + [1915] = {.lex_state = 7, .external_lex_state = 12}, + [1916] = {.lex_state = 0, .external_lex_state = 16}, + [1917] = {.lex_state = 13, .external_lex_state = 15}, + [1918] = {.lex_state = 13, .external_lex_state = 9}, + [1919] = {.lex_state = 13, .external_lex_state = 15}, + [1920] = {.lex_state = 13, .external_lex_state = 9}, + [1921] = {.lex_state = 13, .external_lex_state = 9}, + [1922] = {.lex_state = 13, .external_lex_state = 15}, + [1923] = {.lex_state = 7, .external_lex_state = 12}, + [1924] = {.lex_state = 13, .external_lex_state = 15}, + [1925] = {.lex_state = 13, .external_lex_state = 14}, + [1926] = {.lex_state = 7, .external_lex_state = 14}, + [1927] = {.lex_state = 13, .external_lex_state = 14}, + [1928] = {.lex_state = 7, .external_lex_state = 13}, + [1929] = {.lex_state = 13, .external_lex_state = 14}, + [1930] = {.lex_state = 13, .external_lex_state = 14}, + [1931] = {.lex_state = 7, .external_lex_state = 12}, + [1932] = {.lex_state = 13, .external_lex_state = 9}, + [1933] = {.lex_state = 7, .external_lex_state = 9}, + [1934] = {.lex_state = 7, .external_lex_state = 12}, + [1935] = {.lex_state = 7, .external_lex_state = 14}, + [1936] = {.lex_state = 7, .external_lex_state = 13}, + [1937] = {.lex_state = 7, .external_lex_state = 9}, + [1938] = {.lex_state = 0, .external_lex_state = 16}, + [1939] = {.lex_state = 13, .external_lex_state = 15}, + [1940] = {.lex_state = 7, .external_lex_state = 14}, + [1941] = {.lex_state = 7, .external_lex_state = 12}, + [1942] = {.lex_state = 13, .external_lex_state = 15}, + [1943] = {.lex_state = 7, .external_lex_state = 14}, + [1944] = {.lex_state = 54, .external_lex_state = 12}, + [1945] = {.lex_state = 7, .external_lex_state = 14}, + [1946] = {.lex_state = 13, .external_lex_state = 15}, + [1947] = {.lex_state = 7, .external_lex_state = 12}, + [1948] = {.lex_state = 7, .external_lex_state = 13}, + [1949] = {.lex_state = 7, .external_lex_state = 13}, + [1950] = {.lex_state = 13, .external_lex_state = 13}, + [1951] = {.lex_state = 0, .external_lex_state = 16}, + [1952] = {.lex_state = 7, .external_lex_state = 12}, + [1953] = {.lex_state = 0, .external_lex_state = 16}, + [1954] = {.lex_state = 7, .external_lex_state = 12}, + [1955] = {.lex_state = 7, .external_lex_state = 9}, + [1956] = {.lex_state = 13, .external_lex_state = 13}, + [1957] = {.lex_state = 13, .external_lex_state = 15}, + [1958] = {.lex_state = 7, .external_lex_state = 14}, + [1959] = {.lex_state = 7, .external_lex_state = 13}, + [1960] = {.lex_state = 7, .external_lex_state = 13}, + [1961] = {.lex_state = 7, .external_lex_state = 14}, + [1962] = {.lex_state = 13, .external_lex_state = 14}, + [1963] = {.lex_state = 7, .external_lex_state = 14}, + [1964] = {.lex_state = 13, .external_lex_state = 9}, + [1965] = {.lex_state = 54, .external_lex_state = 12}, + [1966] = {.lex_state = 13, .external_lex_state = 15}, + [1967] = {.lex_state = 54, .external_lex_state = 12}, + [1968] = {.lex_state = 13, .external_lex_state = 9}, + [1969] = {.lex_state = 13, .external_lex_state = 15}, + [1970] = {.lex_state = 7, .external_lex_state = 12}, + [1971] = {.lex_state = 7, .external_lex_state = 14}, + [1972] = {.lex_state = 0, .external_lex_state = 16}, + [1973] = {.lex_state = 7, .external_lex_state = 9}, + [1974] = {.lex_state = 7, .external_lex_state = 14}, + [1975] = {.lex_state = 7, .external_lex_state = 14}, + [1976] = {.lex_state = 7, .external_lex_state = 13}, + [1977] = {.lex_state = 7, .external_lex_state = 14}, + [1978] = {.lex_state = 7, .external_lex_state = 14}, + [1979] = {.lex_state = 13, .external_lex_state = 14}, + [1980] = {.lex_state = 13, .external_lex_state = 14}, + [1981] = {.lex_state = 13, .external_lex_state = 14}, + [1982] = {.lex_state = 7, .external_lex_state = 13}, + [1983] = {.lex_state = 7, .external_lex_state = 15}, + [1984] = {.lex_state = 54, .external_lex_state = 12}, + [1985] = {.lex_state = 7, .external_lex_state = 14}, + [1986] = {.lex_state = 13, .external_lex_state = 14}, + [1987] = {.lex_state = 13, .external_lex_state = 9}, + [1988] = {.lex_state = 13, .external_lex_state = 15}, + [1989] = {.lex_state = 13, .external_lex_state = 15}, + [1990] = {.lex_state = 7, .external_lex_state = 14}, + [1991] = {.lex_state = 7, .external_lex_state = 14}, + [1992] = {.lex_state = 7, .external_lex_state = 14}, + [1993] = {.lex_state = 7, .external_lex_state = 13}, + [1994] = {.lex_state = 7, .external_lex_state = 9}, + [1995] = {.lex_state = 13, .external_lex_state = 15}, + [1996] = {.lex_state = 13, .external_lex_state = 9}, + [1997] = {.lex_state = 13, .external_lex_state = 15}, + [1998] = {.lex_state = 54, .external_lex_state = 12}, + [1999] = {.lex_state = 7, .external_lex_state = 12}, + [2000] = {.lex_state = 7, .external_lex_state = 12}, + [2001] = {.lex_state = 7, .external_lex_state = 15}, + [2002] = {.lex_state = 7, .external_lex_state = 12}, + [2003] = {.lex_state = 13, .external_lex_state = 13}, + [2004] = {.lex_state = 13, .external_lex_state = 15}, + [2005] = {.lex_state = 13, .external_lex_state = 13}, + [2006] = {.lex_state = 13, .external_lex_state = 15}, + [2007] = {.lex_state = 7, .external_lex_state = 15}, + [2008] = {.lex_state = 7, .external_lex_state = 9}, + [2009] = {.lex_state = 13, .external_lex_state = 15}, + [2010] = {.lex_state = 13, .external_lex_state = 15}, + [2011] = {.lex_state = 13, .external_lex_state = 15}, + [2012] = {.lex_state = 13, .external_lex_state = 15}, + [2013] = {.lex_state = 54, .external_lex_state = 12}, + [2014] = {.lex_state = 54, .external_lex_state = 12}, + [2015] = {.lex_state = 13, .external_lex_state = 13}, + [2016] = {.lex_state = 13, .external_lex_state = 13}, + [2017] = {.lex_state = 13, .external_lex_state = 13}, + [2018] = {.lex_state = 13, .external_lex_state = 15}, + [2019] = {.lex_state = 13, .external_lex_state = 15}, + [2020] = {.lex_state = 13, .external_lex_state = 15}, + [2021] = {.lex_state = 13, .external_lex_state = 15}, + [2022] = {.lex_state = 7, .external_lex_state = 15}, + [2023] = {.lex_state = 13, .external_lex_state = 15}, + [2024] = {.lex_state = 13, .external_lex_state = 13}, + [2025] = {.lex_state = 13, .external_lex_state = 13}, + [2026] = {.lex_state = 13, .external_lex_state = 13}, + [2027] = {.lex_state = 13, .external_lex_state = 14}, + [2028] = {.lex_state = 54, .external_lex_state = 12}, + [2029] = {.lex_state = 3, .external_lex_state = 12}, + [2030] = {.lex_state = 13, .external_lex_state = 13}, + [2031] = {.lex_state = 7, .external_lex_state = 14}, + [2032] = {.lex_state = 7, .external_lex_state = 14}, + [2033] = {.lex_state = 7, .external_lex_state = 9}, + [2034] = {.lex_state = 7, .external_lex_state = 13}, + [2035] = {.lex_state = 7, .external_lex_state = 13}, + [2036] = {.lex_state = 13, .external_lex_state = 13}, + [2037] = {.lex_state = 7, .external_lex_state = 9}, + [2038] = {.lex_state = 13, .external_lex_state = 15}, + [2039] = {.lex_state = 13, .external_lex_state = 15}, + [2040] = {.lex_state = 7, .external_lex_state = 15}, + [2041] = {.lex_state = 7, .external_lex_state = 13}, + [2042] = {.lex_state = 13, .external_lex_state = 13}, + [2043] = {.lex_state = 13, .external_lex_state = 15}, + [2044] = {.lex_state = 7, .external_lex_state = 12}, + [2045] = {.lex_state = 7, .external_lex_state = 12}, + [2046] = {.lex_state = 54, .external_lex_state = 12}, + [2047] = {.lex_state = 7, .external_lex_state = 13}, + [2048] = {.lex_state = 7, .external_lex_state = 13}, + [2049] = {.lex_state = 7, .external_lex_state = 13}, + [2050] = {.lex_state = 7, .external_lex_state = 12}, + [2051] = {.lex_state = 7, .external_lex_state = 15}, + [2052] = {.lex_state = 13, .external_lex_state = 15}, + [2053] = {.lex_state = 54, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2054] = {.lex_state = 54, .external_lex_state = 12}, + [2055] = {.lex_state = 13, .external_lex_state = 15}, + [2056] = {.lex_state = 13, .external_lex_state = 15}, + [2057] = {.lex_state = 13, .external_lex_state = 15}, + [2058] = {.lex_state = 54, .external_lex_state = 12}, + [2059] = {.lex_state = 13, .external_lex_state = 15}, + [2060] = {.lex_state = 54, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2061] = {.lex_state = 7, .external_lex_state = 15}, + [2062] = {.lex_state = 54, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2063] = {.lex_state = 54, .external_lex_state = 12}, + [2064] = {.lex_state = 7, .external_lex_state = 15}, + [2065] = {.lex_state = 7, .external_lex_state = 14}, + [2066] = {.lex_state = 7, .external_lex_state = 14}, + [2067] = {.lex_state = 7, .external_lex_state = 14}, + [2068] = {.lex_state = 13, .external_lex_state = 12}, + [2069] = {.lex_state = 13, .external_lex_state = 15}, + [2070] = {.lex_state = 7, .external_lex_state = 15}, + [2071] = {.lex_state = 13, .external_lex_state = 15}, + [2072] = {.lex_state = 13, .external_lex_state = 15}, + [2073] = {.lex_state = 54, .external_lex_state = 12}, + [2074] = {.lex_state = 13, .external_lex_state = 15}, + [2075] = {.lex_state = 13, .external_lex_state = 15}, + [2076] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2077] = {.lex_state = 13, .external_lex_state = 15}, + [2078] = {.lex_state = 54, .external_lex_state = 12}, + [2079] = {.lex_state = 13, .external_lex_state = 15}, + [2080] = {.lex_state = 13, .external_lex_state = 15}, + [2081] = {.lex_state = 13, .external_lex_state = 15}, + [2082] = {.lex_state = 54, .external_lex_state = 15}, + [2083] = {.lex_state = 13, .external_lex_state = 15}, + [2084] = {.lex_state = 13, .external_lex_state = 15}, + [2085] = {.lex_state = 54, .external_lex_state = 15}, + [2086] = {.lex_state = 3, .external_lex_state = 12}, + [2087] = {.lex_state = 13, .external_lex_state = 15}, + [2088] = {.lex_state = 13, .external_lex_state = 15}, + [2089] = {.lex_state = 13, .external_lex_state = 15}, + [2090] = {.lex_state = 54, .external_lex_state = 12}, + [2091] = {.lex_state = 7, .external_lex_state = 14}, + [2092] = {.lex_state = 13, .external_lex_state = 15}, + [2093] = {.lex_state = 3, .external_lex_state = 12}, + [2094] = {.lex_state = 7, .external_lex_state = 12}, + [2095] = {.lex_state = 13, .external_lex_state = 15}, + [2096] = {.lex_state = 13, .external_lex_state = 15}, + [2097] = {.lex_state = 13, .external_lex_state = 15}, + [2098] = {.lex_state = 7, .external_lex_state = 12}, + [2099] = {.lex_state = 7, .external_lex_state = 13}, + [2100] = {.lex_state = 7, .external_lex_state = 13}, + [2101] = {.lex_state = 7, .external_lex_state = 9}, + [2102] = {.lex_state = 13, .external_lex_state = 15}, + [2103] = {.lex_state = 13, .external_lex_state = 15}, + [2104] = {.lex_state = 13, .external_lex_state = 15}, + [2105] = {.lex_state = 13, .external_lex_state = 15}, + [2106] = {.lex_state = 13, .external_lex_state = 15}, + [2107] = {.lex_state = 7, .external_lex_state = 12}, + [2108] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2109] = {.lex_state = 7, .external_lex_state = 18}, + [2110] = {.lex_state = 54, .external_lex_state = 9}, + [2111] = {.lex_state = 7, .external_lex_state = 13}, + [2112] = {.lex_state = 7, .external_lex_state = 13}, + [2113] = {.lex_state = 7, .external_lex_state = 14}, + [2114] = {.lex_state = 7, .external_lex_state = 12}, + [2115] = {.lex_state = 54, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2116] = {.lex_state = 7, .external_lex_state = 12}, + [2117] = {.lex_state = 54, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2118] = {.lex_state = 7, .external_lex_state = 13}, + [2119] = {.lex_state = 7, .external_lex_state = 13}, + [2120] = {.lex_state = 7, .external_lex_state = 14}, + [2121] = {.lex_state = 7, .external_lex_state = 13}, + [2122] = {.lex_state = 7, .external_lex_state = 14}, + [2123] = {.lex_state = 7, .external_lex_state = 13}, + [2124] = {.lex_state = 7, .external_lex_state = 13}, + [2125] = {.lex_state = 7, .external_lex_state = 13}, + [2126] = {.lex_state = 7, .external_lex_state = 12}, + [2127] = {.lex_state = 7, .external_lex_state = 13}, + [2128] = {.lex_state = 7, .external_lex_state = 14}, + [2129] = {.lex_state = 7, .external_lex_state = 14}, + [2130] = {.lex_state = 7, .external_lex_state = 14}, + [2131] = {.lex_state = 7, .external_lex_state = 14}, + [2132] = {.lex_state = 7, .external_lex_state = 13}, + [2133] = {.lex_state = 7, .external_lex_state = 13}, + [2134] = {.lex_state = 7, .external_lex_state = 13}, + [2135] = {.lex_state = 7, .external_lex_state = 13}, + [2136] = {.lex_state = 7, .external_lex_state = 13}, + [2137] = {.lex_state = 54, .external_lex_state = 9}, + [2138] = {.lex_state = 7, .external_lex_state = 13}, + [2139] = {.lex_state = 7, .external_lex_state = 13}, + [2140] = {.lex_state = 7, .external_lex_state = 13}, + [2141] = {.lex_state = 54, .external_lex_state = 15}, + [2142] = {.lex_state = 7, .external_lex_state = 9}, + [2143] = {.lex_state = 7, .external_lex_state = 13}, + [2144] = {.lex_state = 7, .external_lex_state = 13}, + [2145] = {.lex_state = 7, .external_lex_state = 13}, + [2146] = {.lex_state = 7, .external_lex_state = 15}, + [2147] = {.lex_state = 7, .external_lex_state = 13}, + [2148] = {.lex_state = 7, .external_lex_state = 13}, + [2149] = {.lex_state = 7, .external_lex_state = 13}, + [2150] = {.lex_state = 7, .external_lex_state = 18}, + [2151] = {.lex_state = 7, .external_lex_state = 12}, + [2152] = {.lex_state = 7, .external_lex_state = 13}, + [2153] = {.lex_state = 54, .external_lex_state = 9}, + [2154] = {.lex_state = 7, .external_lex_state = 14}, + [2155] = {.lex_state = 54, .external_lex_state = 9}, + [2156] = {.lex_state = 13, .external_lex_state = 15}, + [2157] = {.lex_state = 7, .external_lex_state = 14}, + [2158] = {.lex_state = 7, .external_lex_state = 13}, + [2159] = {.lex_state = 7, .external_lex_state = 14}, + [2160] = {.lex_state = 7, .external_lex_state = 14}, + [2161] = {.lex_state = 7, .external_lex_state = 14}, + [2162] = {.lex_state = 7, .external_lex_state = 14}, + [2163] = {.lex_state = 13, .external_lex_state = 15}, + [2164] = {.lex_state = 13, .external_lex_state = 15}, + [2165] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2166] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2167] = {.lex_state = 13, .external_lex_state = 15}, + [2168] = {.lex_state = 7, .external_lex_state = 12}, + [2169] = {.lex_state = 7, .external_lex_state = 14}, + [2170] = {.lex_state = 54, .external_lex_state = 9}, + [2171] = {.lex_state = 7, .external_lex_state = 14}, + [2172] = {.lex_state = 7, .external_lex_state = 14}, + [2173] = {.lex_state = 54, .external_lex_state = 9}, + [2174] = {.lex_state = 54, .external_lex_state = 14}, + [2175] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2176] = {.lex_state = 7, .external_lex_state = 12}, + [2177] = {.lex_state = 54, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2178] = {.lex_state = 7, .external_lex_state = 14}, + [2179] = {.lex_state = 7, .external_lex_state = 14}, + [2180] = {.lex_state = 7, .external_lex_state = 13}, + [2181] = {.lex_state = 13, .external_lex_state = 15}, + [2182] = {.lex_state = 7, .external_lex_state = 12}, + [2183] = {.lex_state = 54, .external_lex_state = 9}, + [2184] = {.lex_state = 7, .external_lex_state = 14}, + [2185] = {.lex_state = 7, .external_lex_state = 12}, + [2186] = {.lex_state = 7, .external_lex_state = 12}, + [2187] = {.lex_state = 54, .external_lex_state = 12}, + [2188] = {.lex_state = 7, .external_lex_state = 12}, + [2189] = {.lex_state = 13, .external_lex_state = 15}, + [2190] = {.lex_state = 7, .external_lex_state = 12}, + [2191] = {.lex_state = 7, .external_lex_state = 12}, + [2192] = {.lex_state = 54, .external_lex_state = 9}, + [2193] = {.lex_state = 54, .external_lex_state = 9}, + [2194] = {.lex_state = 7, .external_lex_state = 12}, + [2195] = {.lex_state = 54, .external_lex_state = 9}, + [2196] = {.lex_state = 7, .external_lex_state = 12}, + [2197] = {.lex_state = 7, .external_lex_state = 12}, + [2198] = {.lex_state = 7, .external_lex_state = 12}, + [2199] = {.lex_state = 7, .external_lex_state = 18}, + [2200] = {.lex_state = 7, .external_lex_state = 14}, + [2201] = {.lex_state = 7, .external_lex_state = 13}, + [2202] = {.lex_state = 7, .external_lex_state = 12}, + [2203] = {.lex_state = 7, .external_lex_state = 14}, + [2204] = {.lex_state = 7, .external_lex_state = 12}, + [2205] = {.lex_state = 7, .external_lex_state = 12}, + [2206] = {.lex_state = 54, .external_lex_state = 9}, + [2207] = {.lex_state = 7, .external_lex_state = 12}, + [2208] = {.lex_state = 7, .external_lex_state = 14}, + [2209] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2210] = {.lex_state = 7, .external_lex_state = 14}, + [2211] = {.lex_state = 7, .external_lex_state = 14}, + [2212] = {.lex_state = 7, .external_lex_state = 14}, + [2213] = {.lex_state = 54, .external_lex_state = 9}, + [2214] = {.lex_state = 54, .external_lex_state = 9}, + [2215] = {.lex_state = 54, .external_lex_state = 12}, + [2216] = {.lex_state = 7, .external_lex_state = 14}, + [2217] = {.lex_state = 54, .external_lex_state = 15}, + [2218] = {.lex_state = 7, .external_lex_state = 14}, + [2219] = {.lex_state = 7, .external_lex_state = 14}, + [2220] = {.lex_state = 54, .external_lex_state = 9}, + [2221] = {.lex_state = 7, .external_lex_state = 18}, + [2222] = {.lex_state = 7, .external_lex_state = 14}, + [2223] = {.lex_state = 54, .external_lex_state = 12}, + [2224] = {.lex_state = 54, .external_lex_state = 15}, + [2225] = {.lex_state = 54, .external_lex_state = 15}, + [2226] = {.lex_state = 7, .external_lex_state = 14}, + [2227] = {.lex_state = 7, .external_lex_state = 18}, + [2228] = {.lex_state = 7, .external_lex_state = 12}, + [2229] = {.lex_state = 54, .external_lex_state = 9}, + [2230] = {.lex_state = 54, .external_lex_state = 9}, + [2231] = {.lex_state = 7, .external_lex_state = 12}, + [2232] = {.lex_state = 7, .external_lex_state = 14}, + [2233] = {.lex_state = 7, .external_lex_state = 14}, + [2234] = {.lex_state = 7, .external_lex_state = 14}, + [2235] = {.lex_state = 7, .external_lex_state = 13}, + [2236] = {.lex_state = 7, .external_lex_state = 12}, + [2237] = {.lex_state = 54, .external_lex_state = 9}, + [2238] = {.lex_state = 54, .external_lex_state = 15}, + [2239] = {.lex_state = 13, .external_lex_state = 15}, + [2240] = {.lex_state = 54, .external_lex_state = 15}, + [2241] = {.lex_state = 54, .external_lex_state = 12}, + [2242] = {.lex_state = 54, .external_lex_state = 9}, + [2243] = {.lex_state = 54, .external_lex_state = 14}, + [2244] = {.lex_state = 54, .external_lex_state = 14}, + [2245] = {.lex_state = 54, .external_lex_state = 12}, + [2246] = {.lex_state = 54, .external_lex_state = 14}, + [2247] = {.lex_state = 54, .external_lex_state = 14}, + [2248] = {.lex_state = 54, .external_lex_state = 14}, + [2249] = {.lex_state = 54, .external_lex_state = 14}, + [2250] = {.lex_state = 54, .external_lex_state = 13}, + [2251] = {.lex_state = 54, .external_lex_state = 19}, + [2252] = {.lex_state = 54, .external_lex_state = 15}, + [2253] = {.lex_state = 54, .external_lex_state = 12}, + [2254] = {.lex_state = 54, .external_lex_state = 13}, + [2255] = {.lex_state = 54, .external_lex_state = 14}, + [2256] = {.lex_state = 54, .external_lex_state = 14}, + [2257] = {.lex_state = 54, .external_lex_state = 14}, + [2258] = {.lex_state = 54, .external_lex_state = 13}, + [2259] = {.lex_state = 54, .external_lex_state = 13}, + [2260] = {.lex_state = 54, .external_lex_state = 15}, + [2261] = {.lex_state = 54, .external_lex_state = 13}, + [2262] = {.lex_state = 54, .external_lex_state = 14}, + [2263] = {.lex_state = 54, .external_lex_state = 14}, + [2264] = {.lex_state = 54, .external_lex_state = 14}, + [2265] = {.lex_state = 7, .external_lex_state = 9}, + [2266] = {.lex_state = 55, .external_lex_state = 17}, + [2267] = {.lex_state = 54, .external_lex_state = 15}, + [2268] = {.lex_state = 54, .external_lex_state = 12}, + [2269] = {.lex_state = 7, .external_lex_state = 12}, + [2270] = {.lex_state = 54, .external_lex_state = 12}, + [2271] = {.lex_state = 54, .external_lex_state = 14}, + [2272] = {.lex_state = 54, .external_lex_state = 13}, + [2273] = {.lex_state = 54, .external_lex_state = 12}, + [2274] = {.lex_state = 54, .external_lex_state = 12}, + [2275] = {.lex_state = 54, .external_lex_state = 12}, + [2276] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2277] = {.lex_state = 7, .external_lex_state = 15}, + [2278] = {.lex_state = 3, .external_lex_state = 12}, + [2279] = {.lex_state = 7, .external_lex_state = 15}, + [2280] = {.lex_state = 3, .external_lex_state = 12}, + [2281] = {.lex_state = 54, .external_lex_state = 14}, + [2282] = {.lex_state = 3, .external_lex_state = 12}, + [2283] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2284] = {.lex_state = 54, .external_lex_state = 14}, + [2285] = {.lex_state = 54, .external_lex_state = 14}, + [2286] = {.lex_state = 7, .external_lex_state = 13}, + [2287] = {.lex_state = 55, .external_lex_state = 17}, + [2288] = {.lex_state = 54, .external_lex_state = 12}, + [2289] = {.lex_state = 55, .external_lex_state = 17}, + [2290] = {.lex_state = 54, .external_lex_state = 9}, + [2291] = {.lex_state = 54, .external_lex_state = 12}, + [2292] = {.lex_state = 54, .external_lex_state = 14}, + [2293] = {.lex_state = 54, .external_lex_state = 13}, + [2294] = {.lex_state = 54, .external_lex_state = 14}, + [2295] = {.lex_state = 54, .external_lex_state = 12}, + [2296] = {.lex_state = 54, .external_lex_state = 12}, + [2297] = {.lex_state = 54, .external_lex_state = 9}, + [2298] = {.lex_state = 54, .external_lex_state = 12}, + [2299] = {.lex_state = 54, .external_lex_state = 14}, + [2300] = {.lex_state = 54, .external_lex_state = 19}, + [2301] = {.lex_state = 54, .external_lex_state = 14}, + [2302] = {.lex_state = 54, .external_lex_state = 14}, + [2303] = {.lex_state = 54, .external_lex_state = 19}, + [2304] = {.lex_state = 54, .external_lex_state = 13}, + [2305] = {.lex_state = 54, .external_lex_state = 15}, + [2306] = {.lex_state = 7, .external_lex_state = 9}, + [2307] = {.lex_state = 54, .external_lex_state = 13}, + [2308] = {.lex_state = 54, .external_lex_state = 19}, + [2309] = {.lex_state = 54, .external_lex_state = 14}, + [2310] = {.lex_state = 54, .external_lex_state = 14}, + [2311] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2312] = {.lex_state = 54, .external_lex_state = 13}, + [2313] = {.lex_state = 54, .external_lex_state = 13}, + [2314] = {.lex_state = 54, .external_lex_state = 12}, + [2315] = {.lex_state = 54, .external_lex_state = 13}, + [2316] = {.lex_state = 54, .external_lex_state = 13}, + [2317] = {.lex_state = 54, .external_lex_state = 15}, + [2318] = {.lex_state = 7, .external_lex_state = 12}, + [2319] = {.lex_state = 7, .external_lex_state = 15}, + [2320] = {.lex_state = 13, .external_lex_state = 15}, + [2321] = {.lex_state = 54, .external_lex_state = 9}, + [2322] = {.lex_state = 54, .external_lex_state = 14}, + [2323] = {.lex_state = 54, .external_lex_state = 12}, + [2324] = {.lex_state = 54, .external_lex_state = 14}, + [2325] = {.lex_state = 54, .external_lex_state = 14}, + [2326] = {.lex_state = 54, .external_lex_state = 13}, + [2327] = {.lex_state = 54, .external_lex_state = 14}, + [2328] = {.lex_state = 54, .external_lex_state = 12}, + [2329] = {.lex_state = 54, .external_lex_state = 14}, + [2330] = {.lex_state = 54, .external_lex_state = 12}, + [2331] = {.lex_state = 7, .external_lex_state = 13}, + [2332] = {.lex_state = 7, .external_lex_state = 13}, + [2333] = {.lex_state = 54, .external_lex_state = 13}, + [2334] = {.lex_state = 54, .external_lex_state = 13}, + [2335] = {.lex_state = 54, .external_lex_state = 13}, + [2336] = {.lex_state = 54, .external_lex_state = 14}, + [2337] = {.lex_state = 54, .external_lex_state = 14}, + [2338] = {.lex_state = 13, .external_lex_state = 15}, + [2339] = {.lex_state = 54, .external_lex_state = 12}, + [2340] = {.lex_state = 3, .external_lex_state = 12}, + [2341] = {.lex_state = 54, .external_lex_state = 9}, + [2342] = {.lex_state = 55, .external_lex_state = 17}, + [2343] = {.lex_state = 54, .external_lex_state = 14}, + [2344] = {.lex_state = 54, .external_lex_state = 9}, + [2345] = {.lex_state = 54, .external_lex_state = 15}, + [2346] = {.lex_state = 54, .external_lex_state = 12}, + [2347] = {.lex_state = 54, .external_lex_state = 9}, + [2348] = {.lex_state = 54, .external_lex_state = 13}, + [2349] = {.lex_state = 54, .external_lex_state = 12}, + [2350] = {.lex_state = 7, .external_lex_state = 14}, + [2351] = {.lex_state = 54, .external_lex_state = 14}, + [2352] = {.lex_state = 54, .external_lex_state = 14}, + [2353] = {.lex_state = 54, .external_lex_state = 13}, + [2354] = {.lex_state = 54, .external_lex_state = 14}, + [2355] = {.lex_state = 54, .external_lex_state = 14}, + [2356] = {.lex_state = 54, .external_lex_state = 13}, + [2357] = {.lex_state = 54, .external_lex_state = 14}, + [2358] = {.lex_state = 54, .external_lex_state = 13}, + [2359] = {.lex_state = 54, .external_lex_state = 13}, + [2360] = {.lex_state = 54, .external_lex_state = 12}, + [2361] = {.lex_state = 54, .external_lex_state = 9}, + [2362] = {.lex_state = 7, .external_lex_state = 9}, + [2363] = {.lex_state = 55, .external_lex_state = 17}, + [2364] = {.lex_state = 54, .external_lex_state = 15}, + [2365] = {.lex_state = 54, .external_lex_state = 9}, + [2366] = {.lex_state = 54, .external_lex_state = 14}, + [2367] = {.lex_state = 54, .external_lex_state = 12}, + [2368] = {.lex_state = 54, .external_lex_state = 14}, + [2369] = {.lex_state = 54, .external_lex_state = 12}, + [2370] = {.lex_state = 54, .external_lex_state = 9}, + [2371] = {.lex_state = 54, .external_lex_state = 9}, + [2372] = {.lex_state = 54, .external_lex_state = 12}, + [2373] = {.lex_state = 54, .external_lex_state = 14}, + [2374] = {.lex_state = 54, .external_lex_state = 14}, + [2375] = {.lex_state = 54, .external_lex_state = 13}, + [2376] = {.lex_state = 54, .external_lex_state = 14}, + [2377] = {.lex_state = 54, .external_lex_state = 14}, + [2378] = {.lex_state = 54, .external_lex_state = 14}, + [2379] = {.lex_state = 54, .external_lex_state = 14}, + [2380] = {.lex_state = 54, .external_lex_state = 13}, + [2381] = {.lex_state = 54, .external_lex_state = 13}, + [2382] = {.lex_state = 3, .external_lex_state = 12}, + [2383] = {.lex_state = 3, .external_lex_state = 12}, + [2384] = {.lex_state = 3, .external_lex_state = 12}, + [2385] = {.lex_state = 7, .external_lex_state = 14}, + [2386] = {.lex_state = 54, .external_lex_state = 15}, + [2387] = {.lex_state = 54, .external_lex_state = 13}, + [2388] = {.lex_state = 54, .external_lex_state = 19}, + [2389] = {.lex_state = 54, .external_lex_state = 14}, + [2390] = {.lex_state = 54, .external_lex_state = 14}, + [2391] = {.lex_state = 54, .external_lex_state = 12}, + [2392] = {.lex_state = 54, .external_lex_state = 15}, + [2393] = {.lex_state = 54, .external_lex_state = 12}, + [2394] = {.lex_state = 54, .external_lex_state = 12}, + [2395] = {.lex_state = 54, .external_lex_state = 14}, + [2396] = {.lex_state = 54, .external_lex_state = 14}, + [2397] = {.lex_state = 54, .external_lex_state = 15}, + [2398] = {.lex_state = 54, .external_lex_state = 13}, + [2399] = {.lex_state = 54, .external_lex_state = 14}, + [2400] = {.lex_state = 54, .external_lex_state = 14}, + [2401] = {.lex_state = 54, .external_lex_state = 13}, + [2402] = {.lex_state = 54, .external_lex_state = 13}, + [2403] = {.lex_state = 54, .external_lex_state = 14}, + [2404] = {.lex_state = 54, .external_lex_state = 14}, + [2405] = {.lex_state = 54, .external_lex_state = 14}, + [2406] = {.lex_state = 7, .external_lex_state = 15}, + [2407] = {.lex_state = 54, .external_lex_state = 14}, + [2408] = {.lex_state = 7, .external_lex_state = 15}, + [2409] = {.lex_state = 54, .external_lex_state = 9}, + [2410] = {.lex_state = 54, .external_lex_state = 12}, + [2411] = {.lex_state = 7, .external_lex_state = 14}, + [2412] = {.lex_state = 54, .external_lex_state = 14}, + [2413] = {.lex_state = 54, .external_lex_state = 12}, + [2414] = {.lex_state = 54, .external_lex_state = 14}, + [2415] = {.lex_state = 54, .external_lex_state = 12}, + [2416] = {.lex_state = 54, .external_lex_state = 12}, + [2417] = {.lex_state = 54, .external_lex_state = 14}, + [2418] = {.lex_state = 54, .external_lex_state = 14}, + [2419] = {.lex_state = 54, .external_lex_state = 14}, + [2420] = {.lex_state = 54, .external_lex_state = 13}, + [2421] = {.lex_state = 54, .external_lex_state = 15}, + [2422] = {.lex_state = 54, .external_lex_state = 14}, + [2423] = {.lex_state = 7, .external_lex_state = 9}, + [2424] = {.lex_state = 54, .external_lex_state = 14}, + [2425] = {.lex_state = 54, .external_lex_state = 13}, + [2426] = {.lex_state = 54, .external_lex_state = 13}, + [2427] = {.lex_state = 54, .external_lex_state = 12}, + [2428] = {.lex_state = 54, .external_lex_state = 14}, + [2429] = {.lex_state = 7, .external_lex_state = 12}, + [2430] = {.lex_state = 54, .external_lex_state = 13}, + [2431] = {.lex_state = 54, .external_lex_state = 13}, + [2432] = {.lex_state = 54, .external_lex_state = 13}, + [2433] = {.lex_state = 54, .external_lex_state = 9}, + [2434] = {.lex_state = 54, .external_lex_state = 13}, + [2435] = {.lex_state = 54, .external_lex_state = 13}, + [2436] = {.lex_state = 54, .external_lex_state = 13}, + [2437] = {.lex_state = 54, .external_lex_state = 13}, + [2438] = {.lex_state = 54, .external_lex_state = 14}, + [2439] = {.lex_state = 54, .external_lex_state = 12}, + [2440] = {.lex_state = 54, .external_lex_state = 14}, + [2441] = {.lex_state = 7, .external_lex_state = 14}, + [2442] = {.lex_state = 54, .external_lex_state = 12}, + [2443] = {.lex_state = 54, .external_lex_state = 13}, + [2444] = {.lex_state = 54, .external_lex_state = 14}, + [2445] = {.lex_state = 54, .external_lex_state = 13}, + [2446] = {.lex_state = 54, .external_lex_state = 12}, + [2447] = {.lex_state = 54, .external_lex_state = 14}, + [2448] = {.lex_state = 54, .external_lex_state = 15}, + [2449] = {.lex_state = 7, .external_lex_state = 15}, + [2450] = {.lex_state = 54, .external_lex_state = 12}, + [2451] = {.lex_state = 7, .external_lex_state = 15}, + [2452] = {.lex_state = 3, .external_lex_state = 12}, + [2453] = {.lex_state = 13, .external_lex_state = 15}, + [2454] = {.lex_state = 13, .external_lex_state = 15}, + [2455] = {.lex_state = 13, .external_lex_state = 15}, + [2456] = {.lex_state = 13, .external_lex_state = 15}, + [2457] = {.lex_state = 54, .external_lex_state = 14}, + [2458] = {.lex_state = 54, .external_lex_state = 13}, + [2459] = {.lex_state = 54, .external_lex_state = 14}, + [2460] = {.lex_state = 54, .external_lex_state = 14}, + [2461] = {.lex_state = 54, .external_lex_state = 19}, + [2462] = {.lex_state = 54, .external_lex_state = 13}, + [2463] = {.lex_state = 7, .external_lex_state = 15}, + [2464] = {.lex_state = 7, .external_lex_state = 15}, + [2465] = {.lex_state = 54, .external_lex_state = 14}, + [2466] = {.lex_state = 54, .external_lex_state = 15}, + [2467] = {.lex_state = 54, .external_lex_state = 13}, + [2468] = {.lex_state = 54, .external_lex_state = 13}, + [2469] = {.lex_state = 54, .external_lex_state = 13}, + [2470] = {.lex_state = 3, .external_lex_state = 12}, + [2471] = {.lex_state = 54, .external_lex_state = 14}, + [2472] = {.lex_state = 54, .external_lex_state = 14}, + [2473] = {.lex_state = 54, .external_lex_state = 13}, + [2474] = {.lex_state = 54, .external_lex_state = 19}, + [2475] = {.lex_state = 54, .external_lex_state = 14}, + [2476] = {.lex_state = 54, .external_lex_state = 12}, + [2477] = {.lex_state = 54, .external_lex_state = 14}, + [2478] = {.lex_state = 54, .external_lex_state = 14}, + [2479] = {.lex_state = 54, .external_lex_state = 14}, + [2480] = {.lex_state = 54, .external_lex_state = 13}, + [2481] = {.lex_state = 13, .external_lex_state = 15}, + [2482] = {.lex_state = 54, .external_lex_state = 19}, + [2483] = {.lex_state = 54, .external_lex_state = 15}, + [2484] = {.lex_state = 54, .external_lex_state = 15}, + [2485] = {.lex_state = 54, .external_lex_state = 13}, + [2486] = {.lex_state = 54, .external_lex_state = 9}, + [2487] = {.lex_state = 54, .external_lex_state = 14}, + [2488] = {.lex_state = 54, .external_lex_state = 9}, + [2489] = {.lex_state = 7, .external_lex_state = 15}, + [2490] = {.lex_state = 7, .external_lex_state = 15}, + [2491] = {.lex_state = 7, .external_lex_state = 15}, + [2492] = {.lex_state = 54, .external_lex_state = 14}, + [2493] = {.lex_state = 54, .external_lex_state = 9}, + [2494] = {.lex_state = 54, .external_lex_state = 13}, + [2495] = {.lex_state = 7, .external_lex_state = 18}, + [2496] = {.lex_state = 54, .external_lex_state = 9}, + [2497] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2498] = {.lex_state = 54, .external_lex_state = 9}, + [2499] = {.lex_state = 54, .external_lex_state = 15}, + [2500] = {.lex_state = 7, .external_lex_state = 18}, + [2501] = {.lex_state = 54, .external_lex_state = 9}, + [2502] = {.lex_state = 54, .external_lex_state = 15}, + [2503] = {.lex_state = 9, .external_lex_state = 15}, + [2504] = {.lex_state = 54, .external_lex_state = 9}, + [2505] = {.lex_state = 7, .external_lex_state = 18}, + [2506] = {.lex_state = 7, .external_lex_state = 18}, + [2507] = {.lex_state = 54, .external_lex_state = 9}, + [2508] = {.lex_state = 54, .external_lex_state = 12}, + [2509] = {.lex_state = 54, .external_lex_state = 15}, + [2510] = {.lex_state = 7, .external_lex_state = 18}, + [2511] = {.lex_state = 54, .external_lex_state = 9}, + [2512] = {.lex_state = 54, .external_lex_state = 9}, + [2513] = {.lex_state = 54, .external_lex_state = 9}, + [2514] = {.lex_state = 54, .external_lex_state = 9}, + [2515] = {.lex_state = 7, .external_lex_state = 18}, + [2516] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2517] = {.lex_state = 54, .external_lex_state = 15}, + [2518] = {.lex_state = 54, .external_lex_state = 14}, + [2519] = {.lex_state = 54, .external_lex_state = 14}, + [2520] = {.lex_state = 54, .external_lex_state = 9}, + [2521] = {.lex_state = 54, .external_lex_state = 14}, + [2522] = {.lex_state = 54, .external_lex_state = 14}, + [2523] = {.lex_state = 54, .external_lex_state = 14}, + [2524] = {.lex_state = 7, .external_lex_state = 18}, + [2525] = {.lex_state = 54, .external_lex_state = 15}, + [2526] = {.lex_state = 54, .external_lex_state = 15}, + [2527] = {.lex_state = 54, .external_lex_state = 13}, + [2528] = {.lex_state = 54, .external_lex_state = 15}, + [2529] = {.lex_state = 54, .external_lex_state = 9}, + [2530] = {.lex_state = 7, .external_lex_state = 18}, + [2531] = {.lex_state = 54, .external_lex_state = 15}, + [2532] = {.lex_state = 54, .external_lex_state = 14}, + [2533] = {.lex_state = 54, .external_lex_state = 15}, + [2534] = {.lex_state = 54, .external_lex_state = 14}, + [2535] = {.lex_state = 54, .external_lex_state = 12}, + [2536] = {.lex_state = 54, .external_lex_state = 12}, + [2537] = {.lex_state = 54, .external_lex_state = 14}, + [2538] = {.lex_state = 54, .external_lex_state = 15}, + [2539] = {.lex_state = 54, .external_lex_state = 14}, + [2540] = {.lex_state = 9, .external_lex_state = 15}, + [2541] = {.lex_state = 7, .external_lex_state = 18}, + [2542] = {.lex_state = 54, .external_lex_state = 15}, + [2543] = {.lex_state = 54, .external_lex_state = 14}, + [2544] = {.lex_state = 7, .external_lex_state = 18}, + [2545] = {.lex_state = 54, .external_lex_state = 14}, + [2546] = {.lex_state = 54, .external_lex_state = 15}, + [2547] = {.lex_state = 54, .external_lex_state = 13}, + [2548] = {.lex_state = 54, .external_lex_state = 9}, + [2549] = {.lex_state = 54, .external_lex_state = 9}, + [2550] = {.lex_state = 54, .external_lex_state = 15}, + [2551] = {.lex_state = 54, .external_lex_state = 15}, + [2552] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2553] = {.lex_state = 54, .external_lex_state = 13}, + [2554] = {.lex_state = 54, .external_lex_state = 13}, + [2555] = {.lex_state = 9, .external_lex_state = 15}, + [2556] = {.lex_state = 9, .external_lex_state = 15}, + [2557] = {.lex_state = 54, .external_lex_state = 14}, + [2558] = {.lex_state = 9, .external_lex_state = 15}, + [2559] = {.lex_state = 9, .external_lex_state = 15}, + [2560] = {.lex_state = 54, .external_lex_state = 9}, + [2561] = {.lex_state = 54, .external_lex_state = 13}, + [2562] = {.lex_state = 7, .external_lex_state = 18}, + [2563] = {.lex_state = 54, .external_lex_state = 9}, + [2564] = {.lex_state = 54, .external_lex_state = 12}, + [2565] = {.lex_state = 54, .external_lex_state = 15}, + [2566] = {.lex_state = 54, .external_lex_state = 15}, + [2567] = {.lex_state = 7, .external_lex_state = 18}, + [2568] = {.lex_state = 7, .external_lex_state = 18}, + [2569] = {.lex_state = 7, .external_lex_state = 18}, + [2570] = {.lex_state = 54, .external_lex_state = 13}, + [2571] = {.lex_state = 9, .external_lex_state = 15}, + [2572] = {.lex_state = 54, .external_lex_state = 14}, + [2573] = {.lex_state = 9, .external_lex_state = 15}, + [2574] = {.lex_state = 7, .external_lex_state = 18}, + [2575] = {.lex_state = 54, .external_lex_state = 9}, + [2576] = {.lex_state = 54, .external_lex_state = 14}, + [2577] = {.lex_state = 7, .external_lex_state = 18}, + [2578] = {.lex_state = 7, .external_lex_state = 18}, + [2579] = {.lex_state = 54, .external_lex_state = 15}, + [2580] = {.lex_state = 9, .external_lex_state = 15}, + [2581] = {.lex_state = 54, .external_lex_state = 13}, + [2582] = {.lex_state = 54, .external_lex_state = 15}, + [2583] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2584] = {.lex_state = 54, .external_lex_state = 9}, + [2585] = {.lex_state = 7, .external_lex_state = 18}, + [2586] = {.lex_state = 54, .external_lex_state = 13}, + [2587] = {.lex_state = 54, .external_lex_state = 15}, + [2588] = {.lex_state = 54, .external_lex_state = 15}, + [2589] = {.lex_state = 54, .external_lex_state = 15}, + [2590] = {.lex_state = 9, .external_lex_state = 15}, + [2591] = {.lex_state = 54, .external_lex_state = 15}, + [2592] = {.lex_state = 54, .external_lex_state = 14}, + [2593] = {.lex_state = 54, .external_lex_state = 12}, + [2594] = {.lex_state = 54, .external_lex_state = 14}, + [2595] = {.lex_state = 4, .external_lex_state = 15}, + [2596] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2597] = {.lex_state = 54, .external_lex_state = 12}, + [2598] = {.lex_state = 54, .external_lex_state = 14}, + [2599] = {.lex_state = 54, .external_lex_state = 14}, + [2600] = {.lex_state = 54, .external_lex_state = 15}, + [2601] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2602] = {.lex_state = 54, .external_lex_state = 13}, + [2603] = {.lex_state = 54, .external_lex_state = 12}, + [2604] = {.lex_state = 54, .external_lex_state = 12}, + [2605] = {.lex_state = 54, .external_lex_state = 15}, + [2606] = {.lex_state = 54, .external_lex_state = 12}, + [2607] = {.lex_state = 54, .external_lex_state = 15}, + [2608] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2609] = {.lex_state = 54, .external_lex_state = 13}, + [2610] = {.lex_state = 54, .external_lex_state = 14}, + [2611] = {.lex_state = 54, .external_lex_state = 13}, + [2612] = {.lex_state = 54, .external_lex_state = 13}, + [2613] = {.lex_state = 54, .external_lex_state = 15}, + [2614] = {.lex_state = 54, .external_lex_state = 12}, + [2615] = {.lex_state = 54, .external_lex_state = 12}, + [2616] = {.lex_state = 54, .external_lex_state = 14}, + [2617] = {.lex_state = 54, .external_lex_state = 14}, + [2618] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2619] = {.lex_state = 54, .external_lex_state = 12}, + [2620] = {.lex_state = 54, .external_lex_state = 12}, + [2621] = {.lex_state = 54, .external_lex_state = 15}, + [2622] = {.lex_state = 54, .external_lex_state = 12}, + [2623] = {.lex_state = 54, .external_lex_state = 15}, + [2624] = {.lex_state = 54, .external_lex_state = 15}, + [2625] = {.lex_state = 54, .external_lex_state = 12}, + [2626] = {.lex_state = 4, .external_lex_state = 15}, + [2627] = {.lex_state = 54, .external_lex_state = 15}, + [2628] = {.lex_state = 54, .external_lex_state = 14}, + [2629] = {.lex_state = 54, .external_lex_state = 14}, + [2630] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2631] = {.lex_state = 54, .external_lex_state = 14}, + [2632] = {.lex_state = 54, .external_lex_state = 12}, + [2633] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2634] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2635] = {.lex_state = 54, .external_lex_state = 12}, + [2636] = {.lex_state = 54, .external_lex_state = 14}, + [2637] = {.lex_state = 7, .external_lex_state = 15}, + [2638] = {.lex_state = 54, .external_lex_state = 15}, + [2639] = {.lex_state = 4, .external_lex_state = 15}, + [2640] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2641] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2642] = {.lex_state = 54, .external_lex_state = 14}, + [2643] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2644] = {.lex_state = 7, .external_lex_state = 15}, + [2645] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2646] = {.lex_state = 4, .external_lex_state = 15}, + [2647] = {.lex_state = 54, .external_lex_state = 15}, + [2648] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2649] = {.lex_state = 7, .external_lex_state = 15}, + [2650] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2651] = {.lex_state = 54, .external_lex_state = 12}, + [2652] = {.lex_state = 54, .external_lex_state = 12}, + [2653] = {.lex_state = 54, .external_lex_state = 14}, + [2654] = {.lex_state = 54, .external_lex_state = 14}, + [2655] = {.lex_state = 7, .external_lex_state = 15}, + [2656] = {.lex_state = 54, .external_lex_state = 14}, + [2657] = {.lex_state = 54, .external_lex_state = 14}, + [2658] = {.lex_state = 54, .external_lex_state = 13}, + [2659] = {.lex_state = 54, .external_lex_state = 15}, + [2660] = {.lex_state = 54, .external_lex_state = 12}, + [2661] = {.lex_state = 54, .external_lex_state = 12}, + [2662] = {.lex_state = 54, .external_lex_state = 13}, + [2663] = {.lex_state = 54, .external_lex_state = 13}, + [2664] = {.lex_state = 54, .external_lex_state = 12}, + [2665] = {.lex_state = 54, .external_lex_state = 15}, + [2666] = {.lex_state = 54, .external_lex_state = 15}, + [2667] = {.lex_state = 54, .external_lex_state = 12}, + [2668] = {.lex_state = 54, .external_lex_state = 14}, + [2669] = {.lex_state = 54, .external_lex_state = 13}, + [2670] = {.lex_state = 54, .external_lex_state = 15}, + [2671] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2672] = {.lex_state = 54, .external_lex_state = 13}, + [2673] = {.lex_state = 54, .external_lex_state = 15}, + [2674] = {.lex_state = 7, .external_lex_state = 15}, + [2675] = {.lex_state = 54, .external_lex_state = 12}, + [2676] = {.lex_state = 54, .external_lex_state = 12}, + [2677] = {.lex_state = 54, .external_lex_state = 12}, + [2678] = {.lex_state = 54, .external_lex_state = 15}, + [2679] = {.lex_state = 54, .external_lex_state = 15}, + [2680] = {.lex_state = 7, .external_lex_state = 15}, + [2681] = {.lex_state = 54, .external_lex_state = 14}, + [2682] = {.lex_state = 54, .external_lex_state = 15}, + [2683] = {.lex_state = 54, .external_lex_state = 12}, + [2684] = {.lex_state = 54, .external_lex_state = 12}, + [2685] = {.lex_state = 54, .external_lex_state = 15}, + [2686] = {.lex_state = 54, .external_lex_state = 15}, + [2687] = {.lex_state = 54, .external_lex_state = 15}, + [2688] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2689] = {.lex_state = 7, .external_lex_state = 15}, + [2690] = {.lex_state = 54, .external_lex_state = 15}, + [2691] = {.lex_state = 54, .external_lex_state = 15}, + [2692] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2693] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2694] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2695] = {.lex_state = 54, .external_lex_state = 12}, + [2696] = {.lex_state = 54, .external_lex_state = 12}, + [2697] = {.lex_state = 54, .external_lex_state = 14}, + [2698] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2699] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2700] = {.lex_state = 54, .external_lex_state = 14}, + [2701] = {.lex_state = 54, .external_lex_state = 15}, + [2702] = {.lex_state = 54, .external_lex_state = 12}, + [2703] = {.lex_state = 54, .external_lex_state = 13}, + [2704] = {.lex_state = 7, .external_lex_state = 15}, + [2705] = {.lex_state = 54, .external_lex_state = 13}, + [2706] = {.lex_state = 54, .external_lex_state = 13}, + [2707] = {.lex_state = 54, .external_lex_state = 12}, + [2708] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2709] = {.lex_state = 54, .external_lex_state = 12}, + [2710] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2711] = {.lex_state = 54, .external_lex_state = 12}, + [2712] = {.lex_state = 4, .external_lex_state = 15}, + [2713] = {.lex_state = 54, .external_lex_state = 14}, + [2714] = {.lex_state = 7, .external_lex_state = 15}, + [2715] = {.lex_state = 54, .external_lex_state = 12}, + [2716] = {.lex_state = 7, .external_lex_state = 15}, + [2717] = {.lex_state = 54, .external_lex_state = 12}, + [2718] = {.lex_state = 54, .external_lex_state = 15}, + [2719] = {.lex_state = 54, .external_lex_state = 12}, + [2720] = {.lex_state = 54, .external_lex_state = 14}, + [2721] = {.lex_state = 54, .external_lex_state = 14}, + [2722] = {.lex_state = 54, .external_lex_state = 12}, + [2723] = {.lex_state = 54, .external_lex_state = 12}, + [2724] = {.lex_state = 4, .external_lex_state = 15}, + [2725] = {.lex_state = 54, .external_lex_state = 13}, + [2726] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2727] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2728] = {.lex_state = 7, .external_lex_state = 15}, + [2729] = {.lex_state = 54, .external_lex_state = 14}, + [2730] = {.lex_state = 54, .external_lex_state = 14}, + [2731] = {.lex_state = 54, .external_lex_state = 13}, + [2732] = {.lex_state = 54, .external_lex_state = 15}, + [2733] = {.lex_state = 54, .external_lex_state = 13}, + [2734] = {.lex_state = 54, .external_lex_state = 13}, + [2735] = {.lex_state = 54, .external_lex_state = 15}, + [2736] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2737] = {.lex_state = 54, .external_lex_state = 12}, + [2738] = {.lex_state = 54, .external_lex_state = 14}, + [2739] = {.lex_state = 54, .external_lex_state = 15}, + [2740] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2741] = {.lex_state = 54, .external_lex_state = 14}, + [2742] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2743] = {.lex_state = 54, .external_lex_state = 12}, + [2744] = {.lex_state = 54, .external_lex_state = 14}, + [2745] = {.lex_state = 54, .external_lex_state = 12}, + [2746] = {.lex_state = 54, .external_lex_state = 14}, + [2747] = {.lex_state = 54, .external_lex_state = 13}, + [2748] = {.lex_state = 54, .external_lex_state = 15}, + [2749] = {.lex_state = 54, .external_lex_state = 15}, + [2750] = {.lex_state = 54, .external_lex_state = 13}, + [2751] = {.lex_state = 54, .external_lex_state = 15}, + [2752] = {.lex_state = 54, .external_lex_state = 15}, + [2753] = {.lex_state = 7, .external_lex_state = 15}, + [2754] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2755] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2756] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2757] = {.lex_state = 54, .external_lex_state = 12}, + [2758] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2759] = {.lex_state = 54, .external_lex_state = 15}, + [2760] = {.lex_state = 7, .external_lex_state = 15}, + [2761] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2762] = {.lex_state = 54, .external_lex_state = 14}, + [2763] = {.lex_state = 54, .external_lex_state = 15}, + [2764] = {.lex_state = 7, .external_lex_state = 15}, + [2765] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2766] = {.lex_state = 54, .external_lex_state = 14}, + [2767] = {.lex_state = 54, .external_lex_state = 13}, + [2768] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2769] = {.lex_state = 54, .external_lex_state = 15}, + [2770] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2771] = {.lex_state = 54, .external_lex_state = 13}, + [2772] = {.lex_state = 4, .external_lex_state = 15}, + [2773] = {.lex_state = 54, .external_lex_state = 12}, + [2774] = {.lex_state = 54, .external_lex_state = 12}, + [2775] = {.lex_state = 54, .external_lex_state = 15}, + [2776] = {.lex_state = 54, .external_lex_state = 14}, + [2777] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2778] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2779] = {.lex_state = 54, .external_lex_state = 15}, + [2780] = {.lex_state = 7, .external_lex_state = 15}, + [2781] = {.lex_state = 7, .external_lex_state = 15}, + [2782] = {.lex_state = 7, .external_lex_state = 15}, + [2783] = {.lex_state = 54, .external_lex_state = 14}, + [2784] = {.lex_state = 7, .external_lex_state = 15}, + [2785] = {.lex_state = 7, .external_lex_state = 15}, + [2786] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2787] = {.lex_state = 4, .external_lex_state = 15}, + [2788] = {.lex_state = 54, .external_lex_state = 13}, +}; + +static const TSSymbol ts_reserved_words[16][MAX_RESERVED_WORD_SET_SIZE] = { + [1] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_async, + anon_sym_for, + anon_sym_in, + 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_class, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + sym_true, + sym_false, + sym_none, + }, + [2] = { + anon_sym_as, + anon_sym_elif, + anon_sym_else, + anon_sym_in, + anon_sym_except, + anon_sym_finally, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [3] = { + anon_sym_as, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_class, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [4] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + 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_class, + anon_sym_lambda, + anon_sym_yield, + }, + [5] = { + anon_sym_import, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + 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_class, + anon_sym_lambda, + anon_sym_yield, + }, + [6] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + 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_class, + anon_sym_lambda, + anon_sym_yield, + }, + [7] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + 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_class, + anon_sym_lambda, + anon_sym_yield, + }, + [8] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_for, + anon_sym_in, + 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_class, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [9] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_for, + anon_sym_in, + 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_class, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_yield, + }, + [10] = { + anon_sym_import, + anon_sym_as, + 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_for, + anon_sym_in, + 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_class, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_yield, + }, + [11] = { + anon_sym_as, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [12] = { + anon_sym_as, + anon_sym_elif, + anon_sym_else, + anon_sym_in, + anon_sym_except, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [13] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_for, + anon_sym_in, + 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_class, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + }, + [14] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_for, + anon_sym_in, + 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_class, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + }, + [15] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_async, + anon_sym_for, + anon_sym_in, + 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_class, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), @@ -10417,24 +10797,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_escape_interpolation] = ACTIONS(1), [sym_string_end] = ACTIONS(1), }, - [1] = { - [sym_module] = STATE(2732), + [STATE(1)] = { + [sym_module] = STATE(2624), [sym__statement] = STATE(64), [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), [sym_if_statement] = STATE(64), [sym_match_statement] = STATE(64), [sym_for_statement] = STATE(64), @@ -10442,48 +10822,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(64), [sym_with_statement] = STATE(64), [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), [sym_class_definition] = STATE(64), [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1824), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [aux_sym_decorated_definition_repeat1] = STATE(1824), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10531,73 +10911,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(81), }, - [2] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(726), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(2)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(686), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10645,23 +11025,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [3] = { + [STATE(3)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -10669,49 +11049,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(702), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10759,23 +11139,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [4] = { + [STATE(4)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -10783,49 +11163,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(802), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(823), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10873,23 +11253,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [5] = { + [STATE(5)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -10897,49 +11277,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(819), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(717), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10987,23 +11367,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [6] = { + [STATE(6)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -11011,49 +11391,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(813), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(744), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11101,23 +11481,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [7] = { + [STATE(7)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -11125,49 +11505,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(827), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(758), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11215,23 +11595,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [8] = { + [STATE(8)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -11239,49 +11619,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(731), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(760), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11329,23 +11709,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [9] = { + [STATE(9)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -11353,49 +11733,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(733), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(763), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11443,23 +11823,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [10] = { + [STATE(10)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -11467,49 +11847,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(740), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(770), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11557,23 +11937,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [11] = { + [STATE(11)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -11581,49 +11961,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(712), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(703), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11671,73 +12051,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [12] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(671), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(12)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(669), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11782,26 +12162,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(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [13] = { + [STATE(13)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -11809,49 +12189,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(747), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(779), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11899,23 +12279,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [14] = { + [STATE(14)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -11923,49 +12303,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(750), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(782), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12013,23 +12393,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [15] = { + [STATE(15)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -12037,49 +12417,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(752), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(783), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12127,23 +12507,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [16] = { + [STATE(16)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -12151,49 +12531,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(729), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(708), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12241,23 +12621,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [17] = { + [STATE(17)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -12265,49 +12645,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(715), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(692), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12355,23 +12735,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [18] = { + [STATE(18)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -12379,49 +12759,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(768), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(796), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12469,73 +12849,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [19] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(673), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(19)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(676), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12580,76 +12960,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), }, - [20] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(680), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(20)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(677), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12694,26 +13074,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(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [21] = { + [STATE(21)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -12721,49 +13101,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(772), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(800), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12811,23 +13191,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [22] = { + [STATE(22)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -12835,49 +13215,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(716), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(697), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12925,73 +13305,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [23] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2552), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(23)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(2574), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13036,26 +13416,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(107), [sym_string_start] = ACTIONS(81), }, - [24] = { + [STATE(24)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -13063,49 +13443,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(778), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(809), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13153,23 +13533,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [25] = { + [STATE(25)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -13177,49 +13557,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(785), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(820), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13267,73 +13647,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [26] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2528), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(26)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(2515), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13378,76 +13758,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(107), [sym_string_start] = ACTIONS(81), }, - [27] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2532), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(27)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(2530), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13492,26 +13872,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(107), [sym_string_start] = ACTIONS(81), }, - [28] = { + [STATE(28)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -13519,49 +13899,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(788), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(829), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13609,73 +13989,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [29] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(678), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(29)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(680), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13720,26 +14100,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(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [30] = { + [STATE(30)] = { [sym__statement] = STATE(66), [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(66), [sym_match_statement] = STATE(66), [sym_for_statement] = STATE(66), @@ -13747,163 +14127,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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(66), [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(1821), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(660), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1836), - [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), - }, - [31] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2573), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13948,190 +14214,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_string_start] = ACTIONS(81), - }, - [32] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2574), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), - [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(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [33] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2582), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(31)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(2505), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14176,26 +14328,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(107), [sym_string_start] = ACTIONS(81), }, - [34] = { + [STATE(32)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14203,49 +14355,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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(620), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(2541), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14290,26 +14442,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(107), [sym_string_start] = ACTIONS(81), }, - [35] = { + [STATE(33)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14317,49 +14469,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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(714), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(2500), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14404,76 +14556,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), }, - [36] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(780), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(34)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(1814), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14518,76 +14670,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), }, - [37] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(793), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(35)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(724), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14635,73 +14787,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(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(803), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(36)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(728), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14749,73 +14901,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [39] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(762), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(37)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(805), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14863,73 +15015,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [40] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(766), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(38)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(731), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14977,73 +15129,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(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(775), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(39)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(736), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15091,73 +15243,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [42] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(745), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(40)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(746), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15205,73 +15357,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [43] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(708), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(41)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(752), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15319,73 +15471,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [44] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(698), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(42)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(691), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15430,76 +15582,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), }, - [45] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(758), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(43)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(674), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15547,73 +15699,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [46] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(761), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(44)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(795), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15661,73 +15813,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [47] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(764), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(45)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(803), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15775,187 +15927,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [48] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(623), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), - [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(103), - [sym_string_start] = ACTIONS(81), - }, - [49] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(718), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(46)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(812), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16003,73 +16041,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [50] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(789), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(47)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(710), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16117,73 +16155,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [51] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(687), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(48)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(694), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16228,76 +16266,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), }, - [52] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(660), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(49)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(721), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16342,76 +16380,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), }, - [53] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(797), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(50)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(657), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16459,73 +16497,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [54] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(702), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(51)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(658), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16570,76 +16608,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(111), [sym_string_start] = ACTIONS(81), }, - [55] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(806), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(52)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(725), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16687,73 +16725,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [56] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(834), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(53)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(706), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16801,73 +16839,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [57] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(835), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(54)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(732), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16915,73 +16953,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [58] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(675), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(55)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(740), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17026,76 +17064,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), }, - [59] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(681), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(56)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(741), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17140,76 +17178,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), }, - [60] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(1823), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(57)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(665), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17254,26 +17292,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(101), [sym_string_start] = ACTIONS(81), }, - [61] = { + [STATE(58)] = { [sym__statement] = STATE(69), [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), [sym_if_statement] = STATE(69), [sym_match_statement] = STATE(69), [sym_for_statement] = STATE(69), @@ -17281,49 +17319,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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), [sym_class_definition] = STATE(69), [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(679), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(666), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17368,75 +17406,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(111), [sym_string_start] = ACTIONS(81), }, - [62] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(59)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(606), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17481,189 +17520,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(117), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [63] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), - [sym_identifier] = ACTIONS(119), - [anon_sym_import] = ACTIONS(122), - [anon_sym_from] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_print] = ACTIONS(134), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_return] = ACTIONS(140), - [anon_sym_del] = ACTIONS(143), - [anon_sym_raise] = ACTIONS(146), - [anon_sym_pass] = ACTIONS(149), - [anon_sym_break] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_if] = ACTIONS(158), - [anon_sym_match] = ACTIONS(161), - [anon_sym_async] = ACTIONS(164), - [anon_sym_for] = ACTIONS(167), - [anon_sym_while] = ACTIONS(170), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(176), - [anon_sym_def] = ACTIONS(179), - [anon_sym_global] = ACTIONS(182), - [anon_sym_nonlocal] = ACTIONS(185), - [anon_sym_exec] = ACTIONS(188), - [anon_sym_type] = ACTIONS(191), - [anon_sym_class] = ACTIONS(194), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_AT] = ACTIONS(200), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_not] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_lambda] = ACTIONS(212), - [anon_sym_yield] = ACTIONS(215), - [sym_ellipsis] = ACTIONS(218), - [sym_integer] = ACTIONS(221), - [sym_float] = ACTIONS(218), - [anon_sym_await] = ACTIONS(224), - [sym_true] = ACTIONS(221), - [sym_false] = ACTIONS(221), - [sym_none] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(227), - [sym_string_start] = ACTIONS(229), - }, - [64] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [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(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1798), - [ts_builtin_sym_end] = ACTIONS(232), + [STATE(60)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(1827), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17677,19 +17603,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), @@ -17708,74 +17634,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_string_start] = ACTIONS(81), }, - [65] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(61)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_block] = STATE(611), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17820,75 +17748,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(234), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [66] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(62)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1791), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17933,139 +17861,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(236), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [67] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [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(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1798), - [ts_builtin_sym_end] = ACTIONS(227), - [sym_identifier] = ACTIONS(119), - [anon_sym_import] = ACTIONS(122), - [anon_sym_from] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_print] = ACTIONS(134), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_return] = ACTIONS(140), - [anon_sym_del] = ACTIONS(143), - [anon_sym_raise] = ACTIONS(146), - [anon_sym_pass] = ACTIONS(149), - [anon_sym_break] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_if] = ACTIONS(238), - [anon_sym_match] = ACTIONS(241), - [anon_sym_async] = ACTIONS(244), - [anon_sym_for] = ACTIONS(247), - [anon_sym_while] = ACTIONS(250), - [anon_sym_try] = ACTIONS(253), - [anon_sym_with] = ACTIONS(256), - [anon_sym_def] = ACTIONS(259), - [anon_sym_global] = ACTIONS(182), - [anon_sym_nonlocal] = ACTIONS(185), - [anon_sym_exec] = ACTIONS(188), - [anon_sym_type] = ACTIONS(191), - [anon_sym_class] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_AT] = ACTIONS(200), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_not] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_lambda] = ACTIONS(212), - [anon_sym_yield] = ACTIONS(215), - [sym_ellipsis] = ACTIONS(218), - [sym_integer] = ACTIONS(221), - [sym_float] = ACTIONS(218), - [anon_sym_await] = ACTIONS(224), - [sym_true] = ACTIONS(221), - [sym_false] = ACTIONS(221), - [sym_none] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(229), - }, - [68] = { + [STATE(63)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), [sym_if_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_for_statement] = STATE(63), @@ -18073,112 +17888,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(63), [sym_with_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1824), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), - [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), + [aux_sym_decorated_definition_repeat1] = STATE(1824), + [ts_builtin_sym_end] = ACTIONS(115), + [sym_identifier] = ACTIONS(117), + [anon_sym_import] = ACTIONS(120), + [anon_sym_from] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_print] = ACTIONS(132), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_return] = ACTIONS(138), + [anon_sym_del] = ACTIONS(141), + [anon_sym_raise] = ACTIONS(144), + [anon_sym_pass] = ACTIONS(147), + [anon_sym_break] = ACTIONS(150), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_if] = ACTIONS(156), + [anon_sym_match] = ACTIONS(159), + [anon_sym_async] = ACTIONS(162), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(168), + [anon_sym_try] = ACTIONS(171), + [anon_sym_with] = ACTIONS(174), + [anon_sym_def] = ACTIONS(177), + [anon_sym_global] = ACTIONS(180), + [anon_sym_nonlocal] = ACTIONS(183), + [anon_sym_exec] = ACTIONS(186), + [anon_sym_type] = ACTIONS(189), + [anon_sym_class] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_not] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_lambda] = ACTIONS(210), + [anon_sym_yield] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(216), + [sym_integer] = ACTIONS(219), + [sym_float] = ACTIONS(216), + [anon_sym_await] = ACTIONS(222), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [sym_none] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(265), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(225), }, - [69] = { + [STATE(64)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), [sym_if_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_for_statement] = STATE(63), @@ -18186,48 +18001,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(63), [sym_with_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1824), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1824), + [ts_builtin_sym_end] = ACTIONS(228), + [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(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(59), + [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_string_start] = ACTIONS(81), + }, + [STATE(65)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1791), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18272,75 +18200,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(267), + [sym__dedent] = ACTIONS(230), [sym_string_start] = ACTIONS(81), }, - [70] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(66)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1791), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18385,75 +18313,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(269), + [sym__dedent] = ACTIONS(232), [sym_string_start] = ACTIONS(81), }, - [71] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(67)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1791), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18498,75 +18426,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(271), + [sym__dedent] = ACTIONS(234), [sym_string_start] = ACTIONS(81), }, - [72] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [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(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(68)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1791), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18611,283 +18539,509 @@ 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(273), + [sym__dedent] = ACTIONS(236), [sym_string_start] = ACTIONS(81), }, - [73] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_type_parameter] = STATE(2062), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_type] = STATE(2248), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_print] = ACTIONS(290), - [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(297), - [anon_sym_async] = ACTIONS(290), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(302), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(306), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(313), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [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(316), - [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), - [anon_sym_lambda] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(326), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [STATE(69)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1791), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(328), - }, - [74] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_type] = STATE(2248), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_print] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), - [anon_sym_match] = ACTIONS(297), - [anon_sym_async] = ACTIONS(290), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(302), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(313), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [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(316), - [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), - [anon_sym_lambda] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(326), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym__dedent] = ACTIONS(238), + [sym_string_start] = ACTIONS(81), + }, + [STATE(70)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [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(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1791), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1791), + [sym_identifier] = ACTIONS(117), + [anon_sym_import] = ACTIONS(120), + [anon_sym_from] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_print] = ACTIONS(132), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_return] = ACTIONS(138), + [anon_sym_del] = ACTIONS(141), + [anon_sym_raise] = ACTIONS(144), + [anon_sym_pass] = ACTIONS(147), + [anon_sym_break] = ACTIONS(150), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_if] = ACTIONS(240), + [anon_sym_match] = ACTIONS(243), + [anon_sym_async] = ACTIONS(246), + [anon_sym_for] = ACTIONS(249), + [anon_sym_while] = ACTIONS(252), + [anon_sym_try] = ACTIONS(255), + [anon_sym_with] = ACTIONS(258), + [anon_sym_def] = ACTIONS(261), + [anon_sym_global] = ACTIONS(180), + [anon_sym_nonlocal] = ACTIONS(183), + [anon_sym_exec] = ACTIONS(186), + [anon_sym_type] = ACTIONS(189), + [anon_sym_class] = ACTIONS(264), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_not] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_lambda] = ACTIONS(210), + [anon_sym_yield] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(216), + [sym_integer] = ACTIONS(219), + [sym_float] = ACTIONS(216), + [anon_sym_await] = ACTIONS(222), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [sym_none] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(328), - }, - [75] = { - [sym__simple_statements] = STATE(749), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [sym__dedent] = ACTIONS(115), + [sym_string_start] = ACTIONS(225), + }, + [STATE(71)] = { + [sym_named_expression] = STATE(1737), + [sym__named_expression_lhs] = STATE(2772), + [sym_type_parameter] = STATE(2096), + [sym_list_splat_pattern] = STATE(1300), + [sym_as_pattern] = STATE(1737), + [sym_expression] = STATE(1763), + [sym_primary_expression] = STATE(955), + [sym_not_operator] = STATE(1737), + [sym_boolean_operator] = STATE(1737), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_comparison_operator] = STATE(1737), + [sym_lambda] = STATE(1737), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_type] = STATE(2181), + [sym_splat_type] = STATE(2083), + [sym_generic_type] = STATE(2083), + [sym_union_type] = STATE(2083), + [sym_constrained_type] = STATE(2083), + [sym_member_type] = STATE(2083), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_conditional_expression] = STATE(1737), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_print] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_match] = ACTIONS(289), + [anon_sym_async] = ACTIONS(282), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(291), + [anon_sym_exec] = ACTIONS(282), + [anon_sym_type] = ACTIONS(294), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(298), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_not] = ACTIONS(305), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_lambda] = ACTIONS(310), + [anon_sym_PLUS_EQ] = ACTIONS(312), + [anon_sym_DASH_EQ] = ACTIONS(312), + [anon_sym_STAR_EQ] = ACTIONS(312), + [anon_sym_SLASH_EQ] = ACTIONS(312), + [anon_sym_AT_EQ] = ACTIONS(312), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), + [anon_sym_PERCENT_EQ] = ACTIONS(312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(312), + [anon_sym_GT_GT_EQ] = ACTIONS(312), + [anon_sym_LT_LT_EQ] = ACTIONS(312), + [anon_sym_AMP_EQ] = ACTIONS(312), + [anon_sym_CARET_EQ] = ACTIONS(312), + [anon_sym_PIPE_EQ] = ACTIONS(312), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(318), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(269), + [sym_string_start] = ACTIONS(320), + }, + [STATE(72)] = { + [sym_named_expression] = STATE(1737), + [sym__named_expression_lhs] = STATE(2772), + [sym_list_splat_pattern] = STATE(1300), + [sym_as_pattern] = STATE(1737), + [sym_expression] = STATE(1763), + [sym_primary_expression] = STATE(955), + [sym_not_operator] = STATE(1737), + [sym_boolean_operator] = STATE(1737), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_comparison_operator] = STATE(1737), + [sym_lambda] = STATE(1737), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_type] = STATE(2181), + [sym_splat_type] = STATE(2083), + [sym_generic_type] = STATE(2083), + [sym_union_type] = STATE(2083), + [sym_constrained_type] = STATE(2083), + [sym_member_type] = STATE(2083), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_conditional_expression] = STATE(1737), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_print] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(296), + [anon_sym_match] = ACTIONS(289), + [anon_sym_async] = ACTIONS(282), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(291), + [anon_sym_exec] = ACTIONS(282), + [anon_sym_type] = ACTIONS(294), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_not] = ACTIONS(305), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_lambda] = ACTIONS(310), + [anon_sym_PLUS_EQ] = ACTIONS(312), + [anon_sym_DASH_EQ] = ACTIONS(312), + [anon_sym_STAR_EQ] = ACTIONS(312), + [anon_sym_SLASH_EQ] = ACTIONS(312), + [anon_sym_AT_EQ] = ACTIONS(312), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), + [anon_sym_PERCENT_EQ] = ACTIONS(312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(312), + [anon_sym_GT_GT_EQ] = ACTIONS(312), + [anon_sym_LT_LT_EQ] = ACTIONS(312), + [anon_sym_AMP_EQ] = ACTIONS(312), + [anon_sym_CARET_EQ] = ACTIONS(312), + [anon_sym_PIPE_EQ] = ACTIONS(312), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(318), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(269), + [sym_string_start] = ACTIONS(320), + }, + [STATE(73)] = { + [sym__simple_statements] = STATE(733), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(646), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(652), + [sym_subscript] = STATE(652), + [sym_call] = STATE(1052), + [sym_type] = STATE(1995), + [sym_splat_type] = STATE(2083), + [sym_generic_type] = STATE(2083), + [sym_union_type] = STATE(2083), + [sym_constrained_type] = STATE(2083), + [sym_member_type] = STATE(2083), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(325), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_print] = ACTIONS(331), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -18895,14 +19049,14 @@ 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_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(333), + [anon_sym_async] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(337), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(339), + [anon_sym_type] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -18913,81 +19067,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(345), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(355), - [sym__indent] = ACTIONS(357), + [sym__newline] = ACTIONS(347), + [sym__indent] = ACTIONS(349), [sym_string_start] = ACTIONS(81), }, - [76] = { - [sym__simple_statements] = STATE(767), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(74)] = { + [sym__simple_statements] = STATE(799), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(646), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(652), + [sym_subscript] = STATE(652), + [sym_call] = STATE(1052), + [sym_type] = STATE(1995), + [sym_splat_type] = STATE(2083), + [sym_generic_type] = STATE(2083), + [sym_union_type] = STATE(2083), + [sym_constrained_type] = STATE(2083), + [sym_member_type] = STATE(2083), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(325), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_print] = ACTIONS(331), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -18995,14 +19149,14 @@ 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_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(333), + [anon_sym_async] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(337), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(339), + [anon_sym_type] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19013,81 +19167,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(345), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__indent] = ACTIONS(361), + [sym__newline] = ACTIONS(351), + [sym__indent] = ACTIONS(353), [sym_string_start] = ACTIONS(81), }, - [77] = { - [sym__simple_statements] = STATE(760), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(75)] = { + [sym__simple_statements] = STATE(794), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(646), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(652), + [sym_subscript] = STATE(652), + [sym_call] = STATE(1052), + [sym_type] = STATE(1995), + [sym_splat_type] = STATE(2083), + [sym_generic_type] = STATE(2083), + [sym_union_type] = STATE(2083), + [sym_constrained_type] = STATE(2083), + [sym_member_type] = STATE(2083), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(325), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_print] = ACTIONS(331), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19095,14 +19249,14 @@ 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_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(333), + [anon_sym_async] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(337), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(339), + [anon_sym_type] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19113,81 +19267,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(345), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__indent] = ACTIONS(365), + [sym__newline] = ACTIONS(355), + [sym__indent] = ACTIONS(357), [sym_string_start] = ACTIONS(81), }, - [78] = { - [sym__simple_statements] = STATE(798), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(76)] = { + [sym__simple_statements] = STATE(802), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(646), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(652), + [sym_subscript] = STATE(652), + [sym_call] = STATE(1052), + [sym_type] = STATE(1995), + [sym_splat_type] = STATE(2083), + [sym_generic_type] = STATE(2083), + [sym_union_type] = STATE(2083), + [sym_constrained_type] = STATE(2083), + [sym_member_type] = STATE(2083), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(325), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_print] = ACTIONS(331), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19195,14 +19349,14 @@ 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_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(333), + [anon_sym_async] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(337), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(339), + [anon_sym_type] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19213,81 +19367,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(345), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(367), - [sym__indent] = ACTIONS(369), + [sym__newline] = ACTIONS(359), + [sym__indent] = ACTIONS(361), [sym_string_start] = ACTIONS(81), }, - [79] = { - [sym__simple_statements] = STATE(773), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(77)] = { + [sym__simple_statements] = STATE(837), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(646), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(652), + [sym_subscript] = STATE(652), + [sym_call] = STATE(1052), + [sym_type] = STATE(1995), + [sym_splat_type] = STATE(2083), + [sym_generic_type] = STATE(2083), + [sym_union_type] = STATE(2083), + [sym_constrained_type] = STATE(2083), + [sym_member_type] = STATE(2083), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(325), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_print] = ACTIONS(331), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19295,14 +19449,14 @@ 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_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(333), + [anon_sym_async] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(337), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(339), + [anon_sym_type] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19313,81 +19467,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(345), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(371), - [sym__indent] = ACTIONS(373), + [sym__newline] = ACTIONS(363), + [sym__indent] = ACTIONS(365), [sym_string_start] = ACTIONS(81), }, - [80] = { - [sym__simple_statements] = STATE(779), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(78)] = { + [sym__simple_statements] = STATE(810), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(646), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(652), + [sym_subscript] = STATE(652), + [sym_call] = STATE(1052), + [sym_type] = STATE(1995), + [sym_splat_type] = STATE(2083), + [sym_generic_type] = STATE(2083), + [sym_union_type] = STATE(2083), + [sym_constrained_type] = STATE(2083), + [sym_member_type] = STATE(2083), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(325), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_print] = ACTIONS(331), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19395,14 +19549,14 @@ 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_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(333), + [anon_sym_async] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(337), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(339), + [anon_sym_type] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19413,81 +19567,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(345), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(375), - [sym__indent] = ACTIONS(377), + [sym__newline] = ACTIONS(367), + [sym__indent] = ACTIONS(369), [sym_string_start] = ACTIONS(81), }, - [81] = { - [sym__simple_statements] = STATE(830), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(79)] = { + [sym__simple_statements] = STATE(716), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(646), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(652), + [sym_subscript] = STATE(652), + [sym_call] = STATE(1052), + [sym_type] = STATE(1995), + [sym_splat_type] = STATE(2083), + [sym_generic_type] = STATE(2083), + [sym_union_type] = STATE(2083), + [sym_constrained_type] = STATE(2083), + [sym_member_type] = STATE(2083), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(325), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_print] = ACTIONS(331), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19495,14 +19649,14 @@ 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_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(333), + [anon_sym_async] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(337), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(339), + [anon_sym_type] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19513,81 +19667,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(345), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(379), - [sym__indent] = ACTIONS(381), + [sym__newline] = ACTIONS(371), + [sym__indent] = ACTIONS(373), [sym_string_start] = ACTIONS(81), }, - [82] = { - [sym__simple_statements] = STATE(786), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(80)] = { + [sym__simple_statements] = STATE(726), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(646), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(652), + [sym_subscript] = STATE(652), + [sym_call] = STATE(1052), + [sym_type] = STATE(1995), + [sym_splat_type] = STATE(2083), + [sym_generic_type] = STATE(2083), + [sym_union_type] = STATE(2083), + [sym_constrained_type] = STATE(2083), + [sym_member_type] = STATE(2083), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(325), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_print] = ACTIONS(331), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19595,14 +19749,14 @@ 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_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(333), + [anon_sym_async] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(337), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(339), + [anon_sym_type] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19613,463 +19767,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(345), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(383), - [sym__indent] = ACTIONS(385), + [sym__newline] = ACTIONS(375), + [sym__indent] = ACTIONS(377), [sym_string_start] = ACTIONS(81), }, - [83] = { - [sym_chevron] = STATE(2156), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_list_splat_pattern] = STATE(1135), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(870), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(387), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_print] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(399), - [anon_sym_async] = ACTIONS(395), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(395), - [anon_sym_type] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(279), + [STATE(81)] = { + [sym_chevron] = STATE(2229), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_list_splat_pattern] = STATE(1049), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(853), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_attribute] = STATE(1052), + [sym_subscript] = STATE(1052), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_print] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(296), + [anon_sym_match] = ACTIONS(391), + [anon_sym_async] = ACTIONS(387), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(387), + [anon_sym_type] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_not] = ACTIONS(407), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [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_PLUS] = ACTIONS(396), + [anon_sym_not] = ACTIONS(399), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), [anon_sym_TILDE] = ACTIONS(65), - [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), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_PLUS_EQ] = ACTIONS(312), + [anon_sym_DASH_EQ] = ACTIONS(312), + [anon_sym_STAR_EQ] = ACTIONS(312), + [anon_sym_SLASH_EQ] = ACTIONS(312), + [anon_sym_AT_EQ] = ACTIONS(312), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), + [anon_sym_PERCENT_EQ] = ACTIONS(312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(312), + [anon_sym_GT_GT_EQ] = ACTIONS(312), + [anon_sym_LT_LT_EQ] = ACTIONS(312), + [anon_sym_AMP_EQ] = ACTIONS(312), + [anon_sym_CARET_EQ] = ACTIONS(312), + [anon_sym_PIPE_EQ] = ACTIONS(312), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(410), + [anon_sym_await] = ACTIONS(402), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), + [sym__newline] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [84] = { - [sym_chevron] = STATE(2156), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_list_splat_pattern] = STATE(1135), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(870), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(387), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_print] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), - [anon_sym_match] = ACTIONS(399), - [anon_sym_async] = ACTIONS(395), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(395), - [anon_sym_type] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(279), + [STATE(82)] = { + [sym_chevron] = STATE(2229), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_list_splat_pattern] = STATE(1049), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(853), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_attribute] = STATE(1052), + [sym_subscript] = STATE(1052), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_print] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_match] = ACTIONS(391), + [anon_sym_async] = ACTIONS(387), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(387), + [anon_sym_type] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_not] = ACTIONS(407), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [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_PLUS] = ACTIONS(396), + [anon_sym_not] = ACTIONS(399), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), [anon_sym_TILDE] = ACTIONS(65), - [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), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_PLUS_EQ] = ACTIONS(312), + [anon_sym_DASH_EQ] = ACTIONS(312), + [anon_sym_STAR_EQ] = ACTIONS(312), + [anon_sym_SLASH_EQ] = ACTIONS(312), + [anon_sym_AT_EQ] = ACTIONS(312), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), + [anon_sym_PERCENT_EQ] = ACTIONS(312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(312), + [anon_sym_GT_GT_EQ] = ACTIONS(312), + [anon_sym_LT_LT_EQ] = ACTIONS(312), + [anon_sym_AMP_EQ] = ACTIONS(312), + [anon_sym_CARET_EQ] = ACTIONS(312), + [anon_sym_PIPE_EQ] = ACTIONS(312), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(410), + [anon_sym_await] = ACTIONS(402), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), + [sym__newline] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [85] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(414), - [anon_sym_print] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), - [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(297), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(313), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [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(316), - [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), - [anon_sym_lambda] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(326), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [STATE(83)] = { + [sym_named_expression] = STATE(1737), + [sym__named_expression_lhs] = STATE(2772), + [sym_list_splat_pattern] = STATE(1300), + [sym_as_pattern] = STATE(1737), + [sym_expression] = STATE(1863), + [sym_primary_expression] = STATE(955), + [sym_not_operator] = STATE(1737), + [sym_boolean_operator] = STATE(1737), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_comparison_operator] = STATE(1737), + [sym_lambda] = STATE(1737), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_conditional_expression] = STATE(1737), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_print] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(296), + [anon_sym_match] = ACTIONS(289), + [anon_sym_async] = ACTIONS(282), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(282), + [anon_sym_type] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_not] = ACTIONS(305), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_lambda] = ACTIONS(310), + [anon_sym_PLUS_EQ] = ACTIONS(312), + [anon_sym_DASH_EQ] = ACTIONS(312), + [anon_sym_STAR_EQ] = ACTIONS(312), + [anon_sym_SLASH_EQ] = ACTIONS(312), + [anon_sym_AT_EQ] = ACTIONS(312), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), + [anon_sym_PERCENT_EQ] = ACTIONS(312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(312), + [anon_sym_GT_GT_EQ] = ACTIONS(312), + [anon_sym_LT_LT_EQ] = ACTIONS(312), + [anon_sym_AMP_EQ] = ACTIONS(312), + [anon_sym_CARET_EQ] = ACTIONS(312), + [anon_sym_PIPE_EQ] = ACTIONS(312), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(318), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(328), - }, - [86] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(414), - [anon_sym_print] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), - [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(297), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(313), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [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(316), - [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), - [anon_sym_lambda] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(326), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym__newline] = ACTIONS(269), + [sym_string_start] = ACTIONS(320), + }, + [STATE(84)] = { + [sym_named_expression] = STATE(1737), + [sym__named_expression_lhs] = STATE(2772), + [sym_list_splat_pattern] = STATE(1300), + [sym_as_pattern] = STATE(1737), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(955), + [sym_not_operator] = STATE(1737), + [sym_boolean_operator] = STATE(1737), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_comparison_operator] = STATE(1737), + [sym_lambda] = STATE(1737), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_conditional_expression] = STATE(1737), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_print] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(296), + [anon_sym_match] = ACTIONS(289), + [anon_sym_async] = ACTIONS(282), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(282), + [anon_sym_type] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_not] = ACTIONS(305), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_lambda] = ACTIONS(310), + [anon_sym_PLUS_EQ] = ACTIONS(312), + [anon_sym_DASH_EQ] = ACTIONS(312), + [anon_sym_STAR_EQ] = ACTIONS(312), + [anon_sym_SLASH_EQ] = ACTIONS(312), + [anon_sym_AT_EQ] = ACTIONS(312), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), + [anon_sym_PERCENT_EQ] = ACTIONS(312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(312), + [anon_sym_GT_GT_EQ] = ACTIONS(312), + [anon_sym_LT_LT_EQ] = ACTIONS(312), + [anon_sym_AMP_EQ] = ACTIONS(312), + [anon_sym_CARET_EQ] = ACTIONS(312), + [anon_sym_PIPE_EQ] = ACTIONS(312), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(318), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(328), - }, - [87] = { - [sym__simple_statements] = STATE(823), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym__newline] = ACTIONS(269), + [sym_string_start] = ACTIONS(320), + }, + [STATE(85)] = { + [sym__simple_statements] = STATE(761), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20083,8 +20237,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20106,63 +20260,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(421), - [sym__indent] = ACTIONS(423), + [sym__newline] = ACTIONS(413), + [sym__indent] = ACTIONS(415), [sym_string_start] = ACTIONS(81), }, - [88] = { - [sym__simple_statements] = STATE(832), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(86)] = { + [sym__simple_statements] = STATE(667), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20176,8 +20330,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20199,63 +20353,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(425), - [sym__indent] = ACTIONS(427), + [sym__newline] = ACTIONS(417), + [sym__indent] = ACTIONS(419), [sym_string_start] = ACTIONS(81), }, - [89] = { - [sym__simple_statements] = STATE(703), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(87)] = { + [sym__simple_statements] = STATE(806), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20269,8 +20423,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20292,63 +20446,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(429), - [sym__indent] = ACTIONS(431), + [sym__newline] = ACTIONS(421), + [sym__indent] = ACTIONS(423), [sym_string_start] = ACTIONS(81), }, - [90] = { - [sym__simple_statements] = STATE(684), - [sym_import_statement] = STATE(2403), - [sym_future_import_statement] = STATE(2403), - [sym_import_from_statement] = STATE(2403), - [sym_print_statement] = STATE(2403), - [sym_assert_statement] = STATE(2403), - [sym_expression_statement] = STATE(2403), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2403), - [sym_delete_statement] = STATE(2403), - [sym_raise_statement] = STATE(2403), - [sym_pass_statement] = STATE(2403), - [sym_break_statement] = STATE(2403), - [sym_continue_statement] = STATE(2403), - [sym_global_statement] = STATE(2403), - [sym_nonlocal_statement] = STATE(2403), - [sym_exec_statement] = STATE(2403), - [sym_type_alias_statement] = STATE(2403), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(88)] = { + [sym__simple_statements] = STATE(688), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20362,8 +20516,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20385,63 +20539,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(433), - [sym__indent] = ACTIONS(435), + [sym__newline] = ACTIONS(425), + [sym__indent] = ACTIONS(427), [sym_string_start] = ACTIONS(81), }, - [91] = { - [sym__simple_statements] = STATE(844), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(89)] = { + [sym__simple_statements] = STATE(656), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20455,8 +20609,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20478,63 +20632,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(437), - [sym__indent] = ACTIONS(439), + [sym__newline] = ACTIONS(429), + [sym__indent] = ACTIONS(431), [sym_string_start] = ACTIONS(81), }, - [92] = { - [sym__simple_statements] = STATE(615), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(90)] = { + [sym__simple_statements] = STATE(822), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20548,8 +20702,194 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [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(433), + [sym__indent] = ACTIONS(435), + [sym_string_start] = ACTIONS(81), + }, + [STATE(91)] = { + [sym__simple_statements] = STATE(754), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [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(409), + [anon_sym_async] = ACTIONS(411), + [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(437), + [sym__indent] = ACTIONS(439), + [sym_string_start] = ACTIONS(81), + }, + [STATE(92)] = { + [sym__simple_statements] = STATE(735), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [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(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20575,59 +20915,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(443), [sym_string_start] = ACTIONS(81), }, - [93] = { - [sym__simple_statements] = STATE(763), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(93)] = { + [sym__simple_statements] = STATE(793), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20641,8 +20981,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20668,59 +21008,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(447), [sym_string_start] = ACTIONS(81), }, - [94] = { - [sym__simple_statements] = STATE(809), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(94)] = { + [sym__simple_statements] = STATE(739), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20734,8 +21074,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20761,59 +21101,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(451), [sym_string_start] = ACTIONS(81), }, - [95] = { - [sym__simple_statements] = STATE(774), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(95)] = { + [sym__simple_statements] = STATE(759), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20827,8 +21167,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20854,59 +21194,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(455), [sym_string_start] = ACTIONS(81), }, - [96] = { - [sym__simple_statements] = STATE(713), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(96)] = { + [sym__simple_statements] = STATE(712), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20920,8 +21260,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20947,59 +21287,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(459), [sym_string_start] = ACTIONS(81), }, - [97] = { - [sym__simple_statements] = STATE(725), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(97)] = { + [sym__simple_statements] = STATE(699), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21013,8 +21353,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21040,59 +21380,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(463), [sym_string_start] = ACTIONS(81), }, - [98] = { - [sym__simple_statements] = STATE(709), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(98)] = { + [sym__simple_statements] = STATE(705), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21106,8 +21446,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21133,59 +21473,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(467), [sym_string_start] = ACTIONS(81), }, - [99] = { - [sym__simple_statements] = STATE(721), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(99)] = { + [sym__simple_statements] = STATE(756), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21199,8 +21539,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21226,59 +21566,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(471), [sym_string_start] = ACTIONS(81), }, - [100] = { - [sym__simple_statements] = STATE(746), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(100)] = { + [sym__simple_statements] = STATE(764), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21292,8 +21632,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21319,59 +21659,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(475), [sym_string_start] = ACTIONS(81), }, - [101] = { - [sym__simple_statements] = STATE(2540), - [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(1679), - [sym__named_expression_lhs] = STATE(2672), - [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(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(101)] = { + [sym__simple_statements] = STATE(622), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21385,8 +21725,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21412,59 +21752,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(479), [sym_string_start] = ACTIONS(81), }, - [102] = { - [sym__simple_statements] = STATE(831), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(102)] = { + [sym__simple_statements] = STATE(675), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21478,8 +21818,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21505,59 +21845,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(483), [sym_string_start] = ACTIONS(81), }, - [103] = { - [sym__simple_statements] = STATE(699), - [sym_import_statement] = STATE(2403), - [sym_future_import_statement] = STATE(2403), - [sym_import_from_statement] = STATE(2403), - [sym_print_statement] = STATE(2403), - [sym_assert_statement] = STATE(2403), - [sym_expression_statement] = STATE(2403), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2403), - [sym_delete_statement] = STATE(2403), - [sym_raise_statement] = STATE(2403), - [sym_pass_statement] = STATE(2403), - [sym_break_statement] = STATE(2403), - [sym_continue_statement] = STATE(2403), - [sym_global_statement] = STATE(2403), - [sym_nonlocal_statement] = STATE(2403), - [sym_exec_statement] = STATE(2403), - [sym_type_alias_statement] = STATE(2403), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(103)] = { + [sym__simple_statements] = STATE(681), + [sym_import_statement] = STATE(2365), + [sym_future_import_statement] = STATE(2365), + [sym_import_from_statement] = STATE(2365), + [sym_print_statement] = STATE(2365), + [sym_assert_statement] = STATE(2365), + [sym_expression_statement] = STATE(2365), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2365), + [sym_delete_statement] = STATE(2365), + [sym_raise_statement] = STATE(2365), + [sym_pass_statement] = STATE(2365), + [sym_break_statement] = STATE(2365), + [sym_continue_statement] = STATE(2365), + [sym_global_statement] = STATE(2365), + [sym_nonlocal_statement] = STATE(2365), + [sym_exec_statement] = STATE(2365), + [sym_type_alias_statement] = STATE(2365), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21571,8 +21911,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21598,59 +21938,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(487), [sym_string_start] = ACTIONS(81), }, - [104] = { - [sym__simple_statements] = STATE(686), - [sym_import_statement] = STATE(2429), - [sym_future_import_statement] = STATE(2429), - [sym_import_from_statement] = STATE(2429), - [sym_print_statement] = STATE(2429), - [sym_assert_statement] = STATE(2429), - [sym_expression_statement] = STATE(2429), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2429), - [sym_delete_statement] = STATE(2429), - [sym_raise_statement] = STATE(2429), - [sym_pass_statement] = STATE(2429), - [sym_break_statement] = STATE(2429), - [sym_continue_statement] = STATE(2429), - [sym_global_statement] = STATE(2429), - [sym_nonlocal_statement] = STATE(2429), - [sym_exec_statement] = STATE(2429), - [sym_type_alias_statement] = STATE(2429), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(104)] = { + [sym__simple_statements] = STATE(2562), + [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(1659), + [sym__named_expression_lhs] = STATE(2724), + [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(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21664,8 +22004,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21691,59 +22031,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(491), [sym_string_start] = ACTIONS(81), }, - [105] = { - [sym__simple_statements] = STATE(2539), - [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(1679), - [sym__named_expression_lhs] = STATE(2672), - [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(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(105)] = { + [sym__simple_statements] = STATE(690), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21757,8 +22097,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21784,59 +22124,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(495), [sym_string_start] = ACTIONS(81), }, - [106] = { - [sym__simple_statements] = STATE(724), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(106)] = { + [sym__simple_statements] = STATE(1819), + [sym_import_statement] = STATE(2344), + [sym_future_import_statement] = STATE(2344), + [sym_import_from_statement] = STATE(2344), + [sym_print_statement] = STATE(2344), + [sym_assert_statement] = STATE(2344), + [sym_expression_statement] = STATE(2344), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2344), + [sym_delete_statement] = STATE(2344), + [sym_raise_statement] = STATE(2344), + [sym_pass_statement] = STATE(2344), + [sym_break_statement] = STATE(2344), + [sym_continue_statement] = STATE(2344), + [sym_global_statement] = STATE(2344), + [sym_nonlocal_statement] = STATE(2344), + [sym_exec_statement] = STATE(2344), + [sym_type_alias_statement] = STATE(2344), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21850,8 +22190,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21877,59 +22217,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(81), }, - [107] = { - [sym__simple_statements] = STATE(826), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(107)] = { + [sym__simple_statements] = STATE(2577), + [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(1659), + [sym__named_expression_lhs] = STATE(2724), + [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(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21943,8 +22283,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21970,59 +22310,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(81), }, - [108] = { - [sym__simple_statements] = STATE(618), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(108)] = { + [sym__simple_statements] = STATE(689), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22036,8 +22376,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22063,59 +22403,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(81), }, - [109] = { - [sym__simple_statements] = STATE(717), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(109)] = { + [sym__simple_statements] = STATE(707), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22129,8 +22469,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22156,59 +22496,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(81), }, - [110] = { - [sym__simple_statements] = STATE(737), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(110)] = { + [sym__simple_statements] = STATE(723), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22222,8 +22562,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22249,59 +22589,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(515), [sym_string_start] = ACTIONS(81), }, - [111] = { - [sym__simple_statements] = STATE(732), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(111)] = { + [sym__simple_statements] = STATE(745), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22315,8 +22655,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22342,59 +22682,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(519), [sym_string_start] = ACTIONS(81), }, - [112] = { - [sym__simple_statements] = STATE(720), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(112)] = { + [sym__simple_statements] = STATE(682), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22408,8 +22748,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22435,59 +22775,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(523), [sym_string_start] = ACTIONS(81), }, - [113] = { - [sym__simple_statements] = STATE(815), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(113)] = { + [sym__simple_statements] = STATE(701), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22501,8 +22841,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22528,59 +22868,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(527), [sym_string_start] = ACTIONS(81), }, - [114] = { - [sym__simple_statements] = STATE(816), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(114)] = { + [sym__simple_statements] = STATE(766), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22594,8 +22934,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22621,59 +22961,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(531), [sym_string_start] = ACTIONS(81), }, - [115] = { - [sym__simple_statements] = STATE(651), - [sym_import_statement] = STATE(2300), - [sym_future_import_statement] = STATE(2300), - [sym_import_from_statement] = STATE(2300), - [sym_print_statement] = STATE(2300), - [sym_assert_statement] = STATE(2300), - [sym_expression_statement] = STATE(2300), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2300), - [sym_delete_statement] = STATE(2300), - [sym_raise_statement] = STATE(2300), - [sym_pass_statement] = STATE(2300), - [sym_break_statement] = STATE(2300), - [sym_continue_statement] = STATE(2300), - [sym_global_statement] = STATE(2300), - [sym_nonlocal_statement] = STATE(2300), - [sym_exec_statement] = STATE(2300), - [sym_type_alias_statement] = STATE(2300), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(115)] = { + [sym__simple_statements] = STATE(2569), + [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(1659), + [sym__named_expression_lhs] = STATE(2724), + [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(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22687,8 +23027,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22714,59 +23054,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(535), [sym_string_start] = ACTIONS(81), }, - [116] = { - [sym__simple_statements] = STATE(2521), - [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(1679), - [sym__named_expression_lhs] = STATE(2672), - [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(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(116)] = { + [sym__simple_statements] = STATE(2506), + [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(1659), + [sym__named_expression_lhs] = STATE(2724), + [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(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22780,8 +23120,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22807,59 +23147,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(539), [sym_string_start] = ACTIONS(81), }, - [117] = { - [sym__simple_statements] = STATE(711), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(117)] = { + [sym__simple_statements] = STATE(772), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22873,8 +23213,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22900,59 +23240,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(543), [sym_string_start] = ACTIONS(81), }, - [118] = { - [sym__simple_statements] = STATE(783), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(118)] = { + [sym__simple_statements] = STATE(2578), + [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(1659), + [sym__named_expression_lhs] = STATE(2724), + [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(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22966,8 +23306,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22993,59 +23333,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(547), [sym_string_start] = ACTIONS(81), }, - [119] = { - [sym__simple_statements] = STATE(2554), - [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(1679), - [sym__named_expression_lhs] = STATE(2672), - [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(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(119)] = { + [sym__simple_statements] = STATE(693), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23059,8 +23399,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23086,59 +23426,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(551), [sym_string_start] = ACTIONS(81), }, - [120] = { - [sym__simple_statements] = STATE(824), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(120)] = { + [sym__simple_statements] = STATE(662), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23152,8 +23492,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23179,59 +23519,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(555), [sym_string_start] = ACTIONS(81), }, - [121] = { - [sym__simple_statements] = STATE(690), - [sym_import_statement] = STATE(2403), - [sym_future_import_statement] = STATE(2403), - [sym_import_from_statement] = STATE(2403), - [sym_print_statement] = STATE(2403), - [sym_assert_statement] = STATE(2403), - [sym_expression_statement] = STATE(2403), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2403), - [sym_delete_statement] = STATE(2403), - [sym_raise_statement] = STATE(2403), - [sym_pass_statement] = STATE(2403), - [sym_break_statement] = STATE(2403), - [sym_continue_statement] = STATE(2403), - [sym_global_statement] = STATE(2403), - [sym_nonlocal_statement] = STATE(2403), - [sym_exec_statement] = STATE(2403), - [sym_type_alias_statement] = STATE(2403), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(121)] = { + [sym__simple_statements] = STATE(827), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23245,8 +23585,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23272,59 +23612,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(559), [sym_string_start] = ACTIONS(81), }, - [122] = { - [sym__simple_statements] = STATE(800), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(122)] = { + [sym__simple_statements] = STATE(715), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23338,8 +23678,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23365,59 +23705,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(563), [sym_string_start] = ACTIONS(81), }, - [123] = { - [sym__simple_statements] = STATE(701), - [sym_import_statement] = STATE(2300), - [sym_future_import_statement] = STATE(2300), - [sym_import_from_statement] = STATE(2300), - [sym_print_statement] = STATE(2300), - [sym_assert_statement] = STATE(2300), - [sym_expression_statement] = STATE(2300), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2300), - [sym_delete_statement] = STATE(2300), - [sym_raise_statement] = STATE(2300), - [sym_pass_statement] = STATE(2300), - [sym_break_statement] = STATE(2300), - [sym_continue_statement] = STATE(2300), - [sym_global_statement] = STATE(2300), - [sym_nonlocal_statement] = STATE(2300), - [sym_exec_statement] = STATE(2300), - [sym_type_alias_statement] = STATE(2300), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(123)] = { + [sym__simple_statements] = STATE(670), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23431,8 +23771,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23458,59 +23798,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(567), [sym_string_start] = ACTIONS(81), }, - [124] = { - [sym__simple_statements] = STATE(665), - [sym_import_statement] = STATE(2300), - [sym_future_import_statement] = STATE(2300), - [sym_import_from_statement] = STATE(2300), - [sym_print_statement] = STATE(2300), - [sym_assert_statement] = STATE(2300), - [sym_expression_statement] = STATE(2300), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2300), - [sym_delete_statement] = STATE(2300), - [sym_raise_statement] = STATE(2300), - [sym_pass_statement] = STATE(2300), - [sym_break_statement] = STATE(2300), - [sym_continue_statement] = STATE(2300), - [sym_global_statement] = STATE(2300), - [sym_nonlocal_statement] = STATE(2300), - [sym_exec_statement] = STATE(2300), - [sym_type_alias_statement] = STATE(2300), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(124)] = { + [sym__simple_statements] = STATE(671), + [sym_import_statement] = STATE(2290), + [sym_future_import_statement] = STATE(2290), + [sym_import_from_statement] = STATE(2290), + [sym_print_statement] = STATE(2290), + [sym_assert_statement] = STATE(2290), + [sym_expression_statement] = STATE(2290), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2290), + [sym_delete_statement] = STATE(2290), + [sym_raise_statement] = STATE(2290), + [sym_pass_statement] = STATE(2290), + [sym_break_statement] = STATE(2290), + [sym_continue_statement] = STATE(2290), + [sym_global_statement] = STATE(2290), + [sym_nonlocal_statement] = STATE(2290), + [sym_exec_statement] = STATE(2290), + [sym_type_alias_statement] = STATE(2290), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23524,8 +23864,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23551,59 +23891,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(571), [sym_string_start] = ACTIONS(81), }, - [125] = { - [sym__simple_statements] = STATE(833), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(125)] = { + [sym__simple_statements] = STATE(718), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23617,8 +23957,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23644,59 +23984,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(575), [sym_string_start] = ACTIONS(81), }, - [126] = { - [sym__simple_statements] = STATE(1829), - [sym_import_statement] = STATE(2463), - [sym_future_import_statement] = STATE(2463), - [sym_import_from_statement] = STATE(2463), - [sym_print_statement] = STATE(2463), - [sym_assert_statement] = STATE(2463), - [sym_expression_statement] = STATE(2463), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2463), - [sym_delete_statement] = STATE(2463), - [sym_raise_statement] = STATE(2463), - [sym_pass_statement] = STATE(2463), - [sym_break_statement] = STATE(2463), - [sym_continue_statement] = STATE(2463), - [sym_global_statement] = STATE(2463), - [sym_nonlocal_statement] = STATE(2463), - [sym_exec_statement] = STATE(2463), - [sym_type_alias_statement] = STATE(2463), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(126)] = { + [sym__simple_statements] = STATE(2567), + [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(1659), + [sym__named_expression_lhs] = STATE(2724), + [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(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23710,8 +24050,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23737,59 +24077,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(579), [sym_string_start] = ACTIONS(81), }, - [127] = { - [sym__simple_statements] = STATE(676), - [sym_import_statement] = STATE(2346), - [sym_future_import_statement] = STATE(2346), - [sym_import_from_statement] = STATE(2346), - [sym_print_statement] = STATE(2346), - [sym_assert_statement] = STATE(2346), - [sym_expression_statement] = STATE(2346), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2346), - [sym_delete_statement] = STATE(2346), - [sym_raise_statement] = STATE(2346), - [sym_pass_statement] = STATE(2346), - [sym_break_statement] = STATE(2346), - [sym_continue_statement] = STATE(2346), - [sym_global_statement] = STATE(2346), - [sym_nonlocal_statement] = STATE(2346), - [sym_exec_statement] = STATE(2346), - [sym_type_alias_statement] = STATE(2346), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(127)] = { + [sym__simple_statements] = STATE(727), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23803,8 +24143,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23830,59 +24170,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(583), [sym_string_start] = ACTIONS(81), }, - [128] = { - [sym__simple_statements] = STATE(756), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(128)] = { + [sym__simple_statements] = STATE(814), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23896,8 +24236,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23923,59 +24263,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(587), [sym_string_start] = ACTIONS(81), }, - [129] = { - [sym__simple_statements] = STATE(743), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(129)] = { + [sym__simple_statements] = STATE(720), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23989,8 +24329,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24016,59 +24356,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(591), [sym_string_start] = ACTIONS(81), }, - [130] = { - [sym__simple_statements] = STATE(839), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(130)] = { + [sym__simple_statements] = STATE(620), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24082,8 +24422,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24109,59 +24449,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(595), [sym_string_start] = ACTIONS(81), }, - [131] = { - [sym__simple_statements] = STATE(734), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(131)] = { + [sym__simple_statements] = STATE(1811), + [sym_import_statement] = STATE(2344), + [sym_future_import_statement] = STATE(2344), + [sym_import_from_statement] = STATE(2344), + [sym_print_statement] = STATE(2344), + [sym_assert_statement] = STATE(2344), + [sym_expression_statement] = STATE(2344), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2344), + [sym_delete_statement] = STATE(2344), + [sym_raise_statement] = STATE(2344), + [sym_pass_statement] = STATE(2344), + [sym_break_statement] = STATE(2344), + [sym_continue_statement] = STATE(2344), + [sym_global_statement] = STATE(2344), + [sym_nonlocal_statement] = STATE(2344), + [sym_exec_statement] = STATE(2344), + [sym_type_alias_statement] = STATE(2344), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24175,8 +24515,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24202,59 +24542,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(599), [sym_string_start] = ACTIONS(81), }, - [132] = { - [sym__simple_statements] = STATE(1807), - [sym_import_statement] = STATE(2463), - [sym_future_import_statement] = STATE(2463), - [sym_import_from_statement] = STATE(2463), - [sym_print_statement] = STATE(2463), - [sym_assert_statement] = STATE(2463), - [sym_expression_statement] = STATE(2463), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2463), - [sym_delete_statement] = STATE(2463), - [sym_raise_statement] = STATE(2463), - [sym_pass_statement] = STATE(2463), - [sym_break_statement] = STATE(2463), - [sym_continue_statement] = STATE(2463), - [sym_global_statement] = STATE(2463), - [sym_nonlocal_statement] = STATE(2463), - [sym_exec_statement] = STATE(2463), - [sym_type_alias_statement] = STATE(2463), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(132)] = { + [sym__simple_statements] = STATE(753), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24268,8 +24608,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24295,59 +24635,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(603), [sym_string_start] = ACTIONS(81), }, - [133] = { - [sym__simple_statements] = STATE(807), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(133)] = { + [sym__simple_statements] = STATE(769), + [sym_import_statement] = STATE(2488), + [sym_future_import_statement] = STATE(2488), + [sym_import_from_statement] = STATE(2488), + [sym_print_statement] = STATE(2488), + [sym_assert_statement] = STATE(2488), + [sym_expression_statement] = STATE(2488), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2488), + [sym_delete_statement] = STATE(2488), + [sym_raise_statement] = STATE(2488), + [sym_pass_statement] = STATE(2488), + [sym_break_statement] = STATE(2488), + [sym_continue_statement] = STATE(2488), + [sym_global_statement] = STATE(2488), + [sym_nonlocal_statement] = STATE(2488), + [sym_exec_statement] = STATE(2488), + [sym_type_alias_statement] = STATE(2488), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24361,8 +24701,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24388,59 +24728,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(607), [sym_string_start] = ACTIONS(81), }, - [134] = { - [sym__simple_statements] = STATE(2576), - [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(1679), - [sym__named_expression_lhs] = STATE(2672), - [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(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(134)] = { + [sym__simple_statements] = STATE(713), + [sym_import_statement] = STATE(2433), + [sym_future_import_statement] = STATE(2433), + [sym_import_from_statement] = STATE(2433), + [sym_print_statement] = STATE(2433), + [sym_assert_statement] = STATE(2433), + [sym_expression_statement] = STATE(2433), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2433), + [sym_delete_statement] = STATE(2433), + [sym_raise_statement] = STATE(2433), + [sym_pass_statement] = STATE(2433), + [sym_break_statement] = STATE(2433), + [sym_continue_statement] = STATE(2433), + [sym_global_statement] = STATE(2433), + [sym_nonlocal_statement] = STATE(2433), + [sym_exec_statement] = STATE(2433), + [sym_type_alias_statement] = STATE(2433), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24454,8 +24794,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24481,59 +24821,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(611), [sym_string_start] = ACTIONS(81), }, - [135] = { - [sym__simple_statements] = STATE(2529), - [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(1679), - [sym__named_expression_lhs] = STATE(2672), - [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(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(135)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24547,8 +24886,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24571,336 +24910,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(613), - [sym__indent] = ACTIONS(615), - [sym_string_start] = ACTIONS(81), - }, - [136] = { - [sym__simple_statements] = STATE(705), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [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(417), - [anon_sym_async] = ACTIONS(419), - [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__indent] = ACTIONS(619), - [sym_string_start] = ACTIONS(81), - }, - [137] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [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(417), - [anon_sym_async] = ACTIONS(419), - [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(621), - [sym_string_start] = ACTIONS(81), - }, - [138] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [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(417), - [anon_sym_async] = ACTIONS(419), - [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(623), [sym_string_start] = ACTIONS(81), }, - [139] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(136)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24914,8 +24977,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24937,61 +25000,61 @@ 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(625), + [sym__newline] = ACTIONS(615), [sym_string_start] = ACTIONS(81), }, - [140] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(137)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25005,8 +25068,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25028,152 +25091,61 @@ 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(627), - [sym_string_start] = ACTIONS(81), - }, - [141] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [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(417), - [anon_sym_async] = ACTIONS(419), - [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(629), + [sym__newline] = ACTIONS(617), [sym_string_start] = ACTIONS(81), }, - [142] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(138)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25187,8 +25159,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25210,61 +25182,61 @@ 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(631), + [sym__newline] = ACTIONS(619), [sym_string_start] = ACTIONS(81), }, - [143] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(139)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25278,8 +25250,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25301,61 +25273,61 @@ 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(633), + [sym__newline] = ACTIONS(621), [sym_string_start] = ACTIONS(81), }, - [144] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(140)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25369,8 +25341,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25392,61 +25364,61 @@ 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(635), + [sym__newline] = ACTIONS(623), [sym_string_start] = ACTIONS(81), }, - [145] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(141)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25460,8 +25432,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25483,61 +25455,61 @@ 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(637), + [sym__newline] = ACTIONS(625), [sym_string_start] = ACTIONS(81), }, - [146] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(142)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25551,8 +25523,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25574,61 +25546,61 @@ 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(639), + [sym__newline] = ACTIONS(627), [sym_string_start] = ACTIONS(81), }, - [147] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(143)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25642,8 +25614,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25665,61 +25637,61 @@ 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(641), + [sym__newline] = ACTIONS(629), [sym_string_start] = ACTIONS(81), }, - [148] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(144)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25733,8 +25705,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25756,61 +25728,61 @@ 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(643), + [sym__newline] = ACTIONS(631), [sym_string_start] = ACTIONS(81), }, - [149] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(145)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25824,8 +25796,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25847,61 +25819,61 @@ 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(645), + [sym__newline] = ACTIONS(633), [sym_string_start] = ACTIONS(81), }, - [150] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(146)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25915,8 +25887,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25938,61 +25910,61 @@ 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(647), + [sym__newline] = ACTIONS(635), [sym_string_start] = ACTIONS(81), }, - [151] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(147)] = { + [sym_import_statement] = STATE(2513), + [sym_future_import_statement] = STATE(2513), + [sym_import_from_statement] = STATE(2513), + [sym_print_statement] = STATE(2513), + [sym_assert_statement] = STATE(2513), + [sym_expression_statement] = STATE(2513), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2724), + [sym_return_statement] = STATE(2513), + [sym_delete_statement] = STATE(2513), + [sym_raise_statement] = STATE(2513), + [sym_pass_statement] = STATE(2513), + [sym_break_statement] = STATE(2513), + [sym_continue_statement] = STATE(2513), + [sym_global_statement] = STATE(2513), + [sym_nonlocal_statement] = STATE(2513), + [sym_exec_statement] = STATE(2513), + [sym_type_alias_statement] = STATE(2513), + [sym_pattern] = STATE(1620), + [sym_tuple_pattern] = STATE(1638), + [sym_list_pattern] = STATE(1638), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(951), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2501), + [sym_augmented_assignment] = STATE(2501), + [sym_pattern_list] = STATE(1645), + [sym_yield] = STATE(2501), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26006,8 +25978,8 @@ 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_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -26029,2946 +26001,2764 @@ 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(649), [sym_string_start] = ACTIONS(81), }, - [152] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [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(417), - [anon_sym_async] = ACTIONS(419), - [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), + [STATE(148)] = { + [sym_list_splat_pattern] = STATE(1049), + [sym_primary_expression] = STATE(965), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_attribute] = STATE(1052), + [sym_subscript] = STATE(1052), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_print] = ACTIONS(641), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(296), + [anon_sym_match] = ACTIONS(643), + [anon_sym_async] = ACTIONS(641), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_PLUS_EQ] = ACTIONS(312), + [anon_sym_DASH_EQ] = ACTIONS(312), + [anon_sym_STAR_EQ] = ACTIONS(312), + [anon_sym_SLASH_EQ] = ACTIONS(312), + [anon_sym_AT_EQ] = ACTIONS(312), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), + [anon_sym_PERCENT_EQ] = ACTIONS(312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(312), + [anon_sym_GT_GT_EQ] = ACTIONS(312), + [anon_sym_LT_LT_EQ] = ACTIONS(312), + [anon_sym_AMP_EQ] = ACTIONS(312), + [anon_sym_CARET_EQ] = ACTIONS(312), + [anon_sym_PIPE_EQ] = ACTIONS(312), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(649), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(651), + [sym__newline] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [153] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [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(417), - [anon_sym_async] = ACTIONS(419), - [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), + [STATE(149)] = { + [sym_list_splat_pattern] = STATE(1049), + [sym_primary_expression] = STATE(965), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_attribute] = STATE(1052), + [sym_subscript] = STATE(1052), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), + [sym_identifier] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_print] = ACTIONS(641), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_match] = ACTIONS(643), + [anon_sym_async] = ACTIONS(641), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_PLUS_EQ] = ACTIONS(312), + [anon_sym_DASH_EQ] = ACTIONS(312), + [anon_sym_STAR_EQ] = ACTIONS(312), + [anon_sym_SLASH_EQ] = ACTIONS(312), + [anon_sym_AT_EQ] = ACTIONS(312), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), + [anon_sym_PERCENT_EQ] = ACTIONS(312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(312), + [anon_sym_GT_GT_EQ] = ACTIONS(312), + [anon_sym_LT_LT_EQ] = ACTIONS(312), + [anon_sym_AMP_EQ] = ACTIONS(312), + [anon_sym_CARET_EQ] = ACTIONS(312), + [anon_sym_PIPE_EQ] = ACTIONS(312), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(649), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [154] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_print] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), - [anon_sym_match] = ACTIONS(659), - [anon_sym_async] = ACTIONS(657), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(657), - [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [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(65), - [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), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(665), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [STATE(150)] = { + [sym_list_splat_pattern] = STATE(1300), + [sym_primary_expression] = STATE(1105), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(316), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(651), + [anon_sym_as] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_print] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_if] = ACTIONS(658), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(662), + [anon_sym_in] = ACTIONS(658), + [anon_sym_STAR_STAR] = ACTIONS(653), + [anon_sym_exec] = ACTIONS(662), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_not] = ACTIONS(658), + [anon_sym_and] = ACTIONS(658), + [anon_sym_or] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_SLASH_SLASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_LT_EQ] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(651), + [anon_sym_BANG_EQ] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_LT_GT] = ACTIONS(651), + [anon_sym_PLUS_EQ] = ACTIONS(651), + [anon_sym_DASH_EQ] = ACTIONS(651), + [anon_sym_STAR_EQ] = ACTIONS(651), + [anon_sym_SLASH_EQ] = ACTIONS(651), + [anon_sym_AT_EQ] = ACTIONS(651), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(651), + [anon_sym_PERCENT_EQ] = ACTIONS(651), + [anon_sym_STAR_STAR_EQ] = ACTIONS(651), + [anon_sym_GT_GT_EQ] = ACTIONS(651), + [anon_sym_LT_LT_EQ] = ACTIONS(651), + [anon_sym_AMP_EQ] = ACTIONS(651), + [anon_sym_CARET_EQ] = ACTIONS(651), + [anon_sym_PIPE_EQ] = ACTIONS(651), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(670), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(81), - }, - [155] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym__newline] = ACTIONS(651), + [sym_string_start] = ACTIONS(320), + }, + [STATE(151)] = { + [sym_list_splat_pattern] = STATE(1049), + [sym_primary_expression] = STATE(965), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_attribute] = STATE(1052), + [sym_subscript] = STATE(1052), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_print] = ACTIONS(657), - [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(659), - [anon_sym_async] = ACTIONS(657), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(657), - [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_from] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_print] = ACTIONS(641), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_match] = ACTIONS(643), + [anon_sym_async] = ACTIONS(641), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(269), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [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_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), [anon_sym_TILDE] = ACTIONS(65), - [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), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(665), + [anon_sym_await] = ACTIONS(649), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), + [sym__newline] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [156] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(669), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(669), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(669), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(669), - [anon_sym_SLASH_SLASH] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_CARET] = ACTIONS(669), - [anon_sym_LT_LT] = ACTIONS(669), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_AT_EQ] = ACTIONS(667), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(667), - [sym_string_start] = ACTIONS(328), - }, - [157] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(152)] = { + [sym_list_splat_pattern] = STATE(1049), + [sym_primary_expression] = STATE(965), + [sym_binary_operator] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_attribute] = STATE(1052), + [sym_subscript] = STATE(1052), + [sym_call] = STATE(1052), + [sym_list] = STATE(1052), + [sym_set] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_dictionary] = STATE(1052), + [sym_list_comprehension] = STATE(1052), + [sym_dictionary_comprehension] = STATE(1052), + [sym_set_comprehension] = STATE(1052), + [sym_generator_expression] = STATE(1052), + [sym_parenthesized_expression] = STATE(1052), + [sym_concatenated_string] = STATE(1052), + [sym_string] = STATE(953), + [sym_await] = STATE(1052), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_from] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_print] = ACTIONS(657), - [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(659), - [anon_sym_async] = ACTIONS(657), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(657), - [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(277), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_from] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_print] = ACTIONS(641), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_match] = ACTIONS(643), + [anon_sym_async] = ACTIONS(641), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(269), [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(269), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [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_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), [anon_sym_TILDE] = ACTIONS(65), - [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), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(665), + [anon_sym_await] = ACTIONS(649), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), + [sym__newline] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [158] = { - [sym_list_splat_pattern] = STATE(1249), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), - [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(696), - [anon_sym_async] = ACTIONS(694), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(700), - [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(700), - [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(704), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [159] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_from] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), + [STATE(153)] = { + [sym_list_splat_pattern] = STATE(1212), + [sym_primary_expression] = STATE(1020), + [sym_binary_operator] = STATE(1251), + [sym_unary_operator] = STATE(1251), + [sym_attribute] = STATE(1251), + [sym_subscript] = STATE(1251), + [sym_call] = STATE(1251), + [sym_list] = STATE(1251), + [sym_set] = STATE(1251), + [sym_tuple] = STATE(1251), + [sym_dictionary] = STATE(1251), + [sym_list_comprehension] = STATE(1251), + [sym_dictionary_comprehension] = STATE(1251), + [sym_set_comprehension] = STATE(1251), + [sym_generator_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_concatenated_string] = STATE(1251), + [sym_string] = STATE(961), + [sym_await] = STATE(1251), + [sym_identifier] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), [anon_sym_STAR] = ACTIONS(676), [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), [anon_sym_match] = ACTIONS(680), [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), + [anon_sym_EQ] = ACTIONS(271), [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(667), - [sym_string_start] = ACTIONS(328), - }, - [160] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_type_conversion] = ACTIONS(667), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [161] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_from] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_print] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(659), - [anon_sym_async] = ACTIONS(657), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(657), - [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [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(65), - [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(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(665), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(684), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(688), + [sym_type_conversion] = ACTIONS(269), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(688), + [anon_sym_await] = ACTIONS(690), + [sym_true] = ACTIONS(672), + [sym_false] = ACTIONS(672), + [sym_none] = ACTIONS(672), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(81), - }, - [162] = { - [sym_list_splat_pattern] = STATE(1249), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), - [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(696), - [anon_sym_async] = ACTIONS(694), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(700), - [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(700), - [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(704), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), + [sym_string_start] = ACTIONS(692), + }, + [STATE(154)] = { + [sym_list_splat_pattern] = STATE(1300), + [sym_primary_expression] = STATE(1105), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(316), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_from] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(651), + [anon_sym_as] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_print] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_if] = ACTIONS(658), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(662), + [anon_sym_in] = ACTIONS(658), + [anon_sym_STAR_STAR] = ACTIONS(694), + [anon_sym_exec] = ACTIONS(662), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(308), + [anon_sym_not] = ACTIONS(658), + [anon_sym_and] = ACTIONS(658), + [anon_sym_or] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_SLASH_SLASH] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_LT_EQ] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(651), + [anon_sym_BANG_EQ] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_LT_GT] = ACTIONS(651), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(670), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [163] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), + [sym__newline] = ACTIONS(651), + [sym_string_start] = ACTIONS(320), + }, + [STATE(155)] = { + [sym_list_splat_pattern] = STATE(1212), + [sym_primary_expression] = STATE(1020), + [sym_binary_operator] = STATE(1251), + [sym_unary_operator] = STATE(1251), + [sym_attribute] = STATE(1251), + [sym_subscript] = STATE(1251), + [sym_call] = STATE(1251), + [sym_list] = STATE(1251), + [sym_set] = STATE(1251), + [sym_tuple] = STATE(1251), + [sym_dictionary] = STATE(1251), + [sym_list_comprehension] = STATE(1251), + [sym_dictionary_comprehension] = STATE(1251), + [sym_set_comprehension] = STATE(1251), + [sym_generator_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_concatenated_string] = STATE(1251), + [sym_string] = STATE(961), + [sym_await] = STATE(1251), + [sym_identifier] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), [anon_sym_STAR] = ACTIONS(676), [anon_sym_print] = ACTIONS(678), - [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(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), [anon_sym_match] = ACTIONS(680), [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(271), [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [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(316), - [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(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(684), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(688), + [sym_type_conversion] = ACTIONS(269), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(688), + [anon_sym_await] = ACTIONS(690), + [sym_true] = ACTIONS(672), + [sym_false] = ACTIONS(672), + [sym_none] = ACTIONS(672), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(692), + }, + [STATE(156)] = { + [sym_list_splat_pattern] = STATE(1300), + [sym_primary_expression] = STATE(1105), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(651), + [anon_sym_as] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_print] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_if] = ACTIONS(658), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(662), + [anon_sym_for] = ACTIONS(658), + [anon_sym_in] = ACTIONS(658), + [anon_sym_STAR_STAR] = ACTIONS(694), + [anon_sym_exec] = ACTIONS(662), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(308), + [anon_sym_not] = ACTIONS(658), + [anon_sym_and] = ACTIONS(658), + [anon_sym_or] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_SLASH_SLASH] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_LT_EQ] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(651), + [anon_sym_BANG_EQ] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_LT_GT] = ACTIONS(651), + [sym_ellipsis] = ACTIONS(314), + [sym_type_conversion] = ACTIONS(651), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(670), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [164] = { - [sym_list_splat_pattern] = STATE(1249), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_as] = ACTIONS(669), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(669), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(694), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(669), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_not] = ACTIONS(669), - [anon_sym_and] = ACTIONS(669), - [anon_sym_or] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(700), - [anon_sym_is] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_LT_GT] = ACTIONS(710), - [sym_ellipsis] = ACTIONS(704), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), + [sym_string_start] = ACTIONS(320), + }, + [STATE(157)] = { + [sym_list_splat_pattern] = STATE(1300), + [sym_primary_expression] = STATE(1105), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_print] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(662), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(662), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(308), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(670), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [165] = { - [sym_list_splat_pattern] = STATE(1229), - [sym_primary_expression] = STATE(999), - [sym_binary_operator] = STATE(1152), - [sym_unary_operator] = STATE(1152), - [sym_attribute] = STATE(1152), - [sym_subscript] = STATE(1152), - [sym_call] = STATE(1152), - [sym_list] = STATE(1152), - [sym_set] = STATE(1152), - [sym_tuple] = STATE(1152), - [sym_dictionary] = STATE(1152), - [sym_list_comprehension] = STATE(1152), - [sym_dictionary_comprehension] = STATE(1152), - [sym_set_comprehension] = STATE(1152), - [sym_generator_expression] = STATE(1152), - [sym_parenthesized_expression] = STATE(1152), - [sym_concatenated_string] = STATE(1152), - [sym_string] = STATE(980), - [sym_await] = STATE(1152), - [sym_identifier] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(717), - [anon_sym_print] = ACTIONS(719), - [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(721), - [anon_sym_async] = ACTIONS(719), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(719), - [anon_sym_type] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(725), - [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(725), - [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(729), - [sym_integer] = ACTIONS(713), - [sym_float] = ACTIONS(729), - [anon_sym_await] = ACTIONS(731), - [sym_true] = ACTIONS(713), - [sym_false] = ACTIONS(713), - [sym_none] = ACTIONS(713), + [sym_string_start] = ACTIONS(320), + }, + [STATE(158)] = { + [sym_list_splat_pattern] = STATE(1407), + [sym_primary_expression] = STATE(1042), + [sym_binary_operator] = STATE(1349), + [sym_unary_operator] = STATE(1349), + [sym_attribute] = STATE(1349), + [sym_subscript] = STATE(1349), + [sym_call] = STATE(1349), + [sym_list] = STATE(1349), + [sym_set] = STATE(1349), + [sym_tuple] = STATE(1349), + [sym_dictionary] = STATE(1349), + [sym_list_comprehension] = STATE(1349), + [sym_dictionary_comprehension] = STATE(1349), + [sym_set_comprehension] = STATE(1349), + [sym_generator_expression] = STATE(1349), + [sym_parenthesized_expression] = STATE(1349), + [sym_concatenated_string] = STATE(1349), + [sym_string] = STATE(977), + [sym_await] = STATE(1349), + [sym_identifier] = ACTIONS(697), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(699), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_print] = ACTIONS(703), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(705), + [anon_sym_async] = ACTIONS(703), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(703), + [anon_sym_type] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LBRACK] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(715), + [sym_integer] = ACTIONS(697), + [sym_float] = ACTIONS(715), + [anon_sym_await] = ACTIONS(717), + [sym_true] = ACTIONS(697), + [sym_false] = ACTIONS(697), + [sym_none] = ACTIONS(697), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(733), - }, - [166] = { - [sym_list_splat_pattern] = STATE(1451), - [sym_primary_expression] = STATE(1252), - [sym_binary_operator] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_attribute] = STATE(1462), - [sym_subscript] = STATE(1462), - [sym_call] = STATE(1462), - [sym_list] = STATE(1462), - [sym_set] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_dictionary] = STATE(1462), - [sym_list_comprehension] = STATE(1462), - [sym_dictionary_comprehension] = STATE(1462), - [sym_set_comprehension] = STATE(1462), - [sym_generator_expression] = STATE(1462), - [sym_parenthesized_expression] = STATE(1462), - [sym_concatenated_string] = STATE(1462), - [sym_string] = STATE(1110), - [sym_await] = STATE(1462), - [sym_identifier] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_as] = ACTIONS(669), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_print] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(669), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(743), - [anon_sym_async] = ACTIONS(741), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(669), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(741), - [anon_sym_type] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_RBRACK] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_not] = ACTIONS(669), - [anon_sym_and] = ACTIONS(669), - [anon_sym_or] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(747), - [anon_sym_is] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_LT_GT] = ACTIONS(710), - [sym_ellipsis] = ACTIONS(751), - [sym_integer] = ACTIONS(735), - [sym_float] = ACTIONS(751), - [anon_sym_await] = ACTIONS(753), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_none] = ACTIONS(735), + [sym_string_start] = ACTIONS(719), + }, + [STATE(159)] = { + [sym_list_splat_pattern] = STATE(1213), + [sym_primary_expression] = STATE(1007), + [sym_binary_operator] = STATE(1190), + [sym_unary_operator] = STATE(1190), + [sym_attribute] = STATE(1190), + [sym_subscript] = STATE(1190), + [sym_call] = STATE(1190), + [sym_list] = STATE(1190), + [sym_set] = STATE(1190), + [sym_tuple] = STATE(1190), + [sym_dictionary] = STATE(1190), + [sym_list_comprehension] = STATE(1190), + [sym_dictionary_comprehension] = STATE(1190), + [sym_set_comprehension] = STATE(1190), + [sym_generator_expression] = STATE(1190), + [sym_parenthesized_expression] = STATE(1190), + [sym_concatenated_string] = STATE(1190), + [sym_string] = STATE(963), + [sym_await] = STATE(1190), + [sym_identifier] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_print] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_match] = ACTIONS(729), + [anon_sym_async] = ACTIONS(727), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(727), + [anon_sym_type] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(737), + [sym_integer] = ACTIONS(721), + [sym_float] = ACTIONS(737), + [anon_sym_await] = ACTIONS(739), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_none] = ACTIONS(721), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(755), - }, - [167] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [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(771), - [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(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), + [sym_string_start] = ACTIONS(741), + }, + [STATE(160)] = { + [sym_list_splat_pattern] = STATE(1423), + [sym_primary_expression] = STATE(1224), + [sym_binary_operator] = STATE(1425), + [sym_unary_operator] = STATE(1425), + [sym_attribute] = STATE(1425), + [sym_subscript] = STATE(1425), + [sym_call] = STATE(1425), + [sym_list] = STATE(1425), + [sym_set] = STATE(1425), + [sym_tuple] = STATE(1425), + [sym_dictionary] = STATE(1425), + [sym_list_comprehension] = STATE(1425), + [sym_dictionary_comprehension] = STATE(1425), + [sym_set_comprehension] = STATE(1425), + [sym_generator_expression] = STATE(1425), + [sym_parenthesized_expression] = STATE(1425), + [sym_concatenated_string] = STATE(1425), + [sym_string] = STATE(1098), + [sym_await] = STATE(1425), + [sym_identifier] = ACTIONS(743), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_as] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_print] = ACTIONS(749), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(658), + [anon_sym_match] = ACTIONS(751), + [anon_sym_async] = ACTIONS(749), + [anon_sym_for] = ACTIONS(658), + [anon_sym_in] = ACTIONS(653), + [anon_sym_STAR_STAR] = ACTIONS(694), + [anon_sym_exec] = ACTIONS(749), + [anon_sym_type] = ACTIONS(751), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_not] = ACTIONS(653), + [anon_sym_and] = ACTIONS(653), + [anon_sym_or] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_SLASH_SLASH] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_is] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_LT_EQ] = ACTIONS(694), + [anon_sym_EQ_EQ] = ACTIONS(694), + [anon_sym_BANG_EQ] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_LT_GT] = ACTIONS(694), + [sym_ellipsis] = ACTIONS(759), + [sym_integer] = ACTIONS(743), + [sym_float] = ACTIONS(759), + [anon_sym_await] = ACTIONS(761), + [sym_true] = ACTIONS(743), + [sym_false] = ACTIONS(743), + [sym_none] = ACTIONS(743), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), - }, - [168] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), + [sym_string_start] = ACTIONS(763), + }, + [STATE(161)] = { + [sym_list_splat_pattern] = STATE(1212), + [sym_primary_expression] = STATE(1020), + [sym_binary_operator] = STATE(1251), + [sym_unary_operator] = STATE(1251), + [sym_attribute] = STATE(1251), + [sym_subscript] = STATE(1251), + [sym_call] = STATE(1251), + [sym_list] = STATE(1251), + [sym_set] = STATE(1251), + [sym_tuple] = STATE(1251), + [sym_dictionary] = STATE(1251), + [sym_list_comprehension] = STATE(1251), + [sym_dictionary_comprehension] = STATE(1251), + [sym_set_comprehension] = STATE(1251), + [sym_generator_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_concatenated_string] = STATE(1251), + [sym_string] = STATE(961), + [sym_await] = STATE(1251), + [sym_identifier] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_as] = ACTIONS(653), [anon_sym_STAR] = ACTIONS(676), [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(658), [anon_sym_match] = ACTIONS(680), [anon_sym_async] = ACTIONS(678), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), + [anon_sym_for] = ACTIONS(658), + [anon_sym_in] = ACTIONS(653), + [anon_sym_STAR_STAR] = ACTIONS(694), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [169] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), - [sym_identifier] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_print] = ACTIONS(787), - [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(789), - [anon_sym_async] = ACTIONS(787), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), - [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(793), - [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(797), - [sym_integer] = ACTIONS(781), - [sym_float] = ACTIONS(797), - [anon_sym_await] = ACTIONS(799), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_none] = ACTIONS(781), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_not] = ACTIONS(653), + [anon_sym_and] = ACTIONS(653), + [anon_sym_or] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_SLASH_SLASH] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(684), + [anon_sym_is] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_LT_EQ] = ACTIONS(694), + [anon_sym_EQ_EQ] = ACTIONS(694), + [anon_sym_BANG_EQ] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_LT_GT] = ACTIONS(694), + [sym_ellipsis] = ACTIONS(688), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(688), + [anon_sym_await] = ACTIONS(690), + [sym_true] = ACTIONS(672), + [sym_false] = ACTIONS(672), + [sym_none] = ACTIONS(672), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(801), - }, - [170] = { - [sym_list_splat_pattern] = STATE(1200), - [sym_primary_expression] = STATE(1011), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym_concatenated_string] = STATE(1226), - [sym_string] = STATE(977), - [sym_await] = STATE(1226), - [sym_identifier] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_print] = ACTIONS(809), - [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(811), - [anon_sym_async] = ACTIONS(809), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(809), - [anon_sym_type] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [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(815), - [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(819), - [sym_integer] = ACTIONS(803), - [sym_float] = ACTIONS(819), - [anon_sym_await] = ACTIONS(821), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_none] = ACTIONS(803), + [sym_string_start] = ACTIONS(692), + }, + [STATE(162)] = { + [sym_list_splat_pattern] = STATE(1376), + [sym_primary_expression] = STATE(1114), + [sym_binary_operator] = STATE(1308), + [sym_unary_operator] = STATE(1308), + [sym_attribute] = STATE(1308), + [sym_subscript] = STATE(1308), + [sym_call] = STATE(1308), + [sym_list] = STATE(1308), + [sym_set] = STATE(1308), + [sym_tuple] = STATE(1308), + [sym_dictionary] = STATE(1308), + [sym_list_comprehension] = STATE(1308), + [sym_dictionary_comprehension] = STATE(1308), + [sym_set_comprehension] = STATE(1308), + [sym_generator_expression] = STATE(1308), + [sym_parenthesized_expression] = STATE(1308), + [sym_concatenated_string] = STATE(1308), + [sym_string] = STATE(985), + [sym_await] = STATE(1308), + [sym_identifier] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_print] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_match] = ACTIONS(773), + [anon_sym_async] = ACTIONS(771), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(781), + [sym_integer] = ACTIONS(765), + [sym_float] = ACTIONS(781), + [anon_sym_await] = ACTIONS(783), + [sym_true] = ACTIONS(765), + [sym_false] = ACTIONS(765), + [sym_none] = ACTIONS(765), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(823), - }, - [171] = { - [sym_list_splat_pattern] = STATE(1249), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(694), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(700), - [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(700), - [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(704), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), + [sym_string_start] = ACTIONS(785), + }, + [STATE(163)] = { + [sym_list_splat_pattern] = STATE(1300), + [sym_primary_expression] = STATE(1105), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_RPAREN] = ACTIONS(651), + [anon_sym_COMMA] = ACTIONS(651), + [anon_sym_as] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_print] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_if] = ACTIONS(658), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(662), + [anon_sym_for] = ACTIONS(658), + [anon_sym_in] = ACTIONS(658), + [anon_sym_STAR_STAR] = ACTIONS(694), + [anon_sym_exec] = ACTIONS(662), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(308), + [anon_sym_not] = ACTIONS(658), + [anon_sym_and] = ACTIONS(658), + [anon_sym_or] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_SLASH_SLASH] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_LT_EQ] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(651), + [anon_sym_BANG_EQ] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_LT_GT] = ACTIONS(651), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(670), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [172] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), - [sym_identifier] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_print] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(789), - [anon_sym_async] = ACTIONS(787), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), - [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(793), - [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(797), - [sym_integer] = ACTIONS(781), - [sym_float] = ACTIONS(797), - [anon_sym_await] = ACTIONS(799), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_none] = ACTIONS(781), + [sym_string_start] = ACTIONS(320), + }, + [STATE(164)] = { + [sym_list_splat_pattern] = STATE(1254), + [sym_primary_expression] = STATE(993), + [sym_binary_operator] = STATE(1148), + [sym_unary_operator] = STATE(1148), + [sym_attribute] = STATE(1148), + [sym_subscript] = STATE(1148), + [sym_call] = STATE(1148), + [sym_list] = STATE(1148), + [sym_set] = STATE(1148), + [sym_tuple] = STATE(1148), + [sym_dictionary] = STATE(1148), + [sym_list_comprehension] = STATE(1148), + [sym_dictionary_comprehension] = STATE(1148), + [sym_set_comprehension] = STATE(1148), + [sym_generator_expression] = STATE(1148), + [sym_parenthesized_expression] = STATE(1148), + [sym_concatenated_string] = STATE(1148), + [sym_string] = STATE(970), + [sym_await] = STATE(1148), + [sym_identifier] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_print] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_match] = ACTIONS(795), + [anon_sym_async] = ACTIONS(793), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(793), + [anon_sym_type] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_RBRACK] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(799), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(803), + [sym_integer] = ACTIONS(787), + [sym_float] = ACTIONS(803), + [anon_sym_await] = ACTIONS(805), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_none] = ACTIONS(787), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(801), - }, - [173] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), + [sym_string_start] = ACTIONS(807), + }, + [STATE(165)] = { + [sym_list_splat_pattern] = STATE(1212), + [sym_primary_expression] = STATE(1020), + [sym_binary_operator] = STATE(1251), + [sym_unary_operator] = STATE(1251), + [sym_attribute] = STATE(1251), + [sym_subscript] = STATE(1251), + [sym_call] = STATE(1251), + [sym_list] = STATE(1251), + [sym_set] = STATE(1251), + [sym_tuple] = STATE(1251), + [sym_dictionary] = STATE(1251), + [sym_list_comprehension] = STATE(1251), + [sym_dictionary_comprehension] = STATE(1251), + [sym_set_comprehension] = STATE(1251), + [sym_generator_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_concatenated_string] = STATE(1251), + [sym_string] = STATE(961), + [sym_await] = STATE(1251), + [sym_identifier] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), [anon_sym_STAR] = ACTIONS(676), [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_else] = ACTIONS(279), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), [anon_sym_match] = ACTIONS(680), [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(271), [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [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(316), - [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(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(684), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(688), + [sym_type_conversion] = ACTIONS(269), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(688), + [anon_sym_await] = ACTIONS(690), + [sym_true] = ACTIONS(672), + [sym_false] = ACTIONS(672), + [sym_none] = ACTIONS(672), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [174] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [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(771), - [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(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), + [sym_string_start] = ACTIONS(692), + }, + [STATE(166)] = { + [sym_list_splat_pattern] = STATE(1213), + [sym_primary_expression] = STATE(1007), + [sym_binary_operator] = STATE(1190), + [sym_unary_operator] = STATE(1190), + [sym_attribute] = STATE(1190), + [sym_subscript] = STATE(1190), + [sym_call] = STATE(1190), + [sym_list] = STATE(1190), + [sym_set] = STATE(1190), + [sym_tuple] = STATE(1190), + [sym_dictionary] = STATE(1190), + [sym_list_comprehension] = STATE(1190), + [sym_dictionary_comprehension] = STATE(1190), + [sym_set_comprehension] = STATE(1190), + [sym_generator_expression] = STATE(1190), + [sym_parenthesized_expression] = STATE(1190), + [sym_concatenated_string] = STATE(1190), + [sym_string] = STATE(963), + [sym_await] = STATE(1190), + [sym_identifier] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_print] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_match] = ACTIONS(729), + [anon_sym_async] = ACTIONS(727), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(727), + [anon_sym_type] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(737), + [sym_integer] = ACTIONS(721), + [sym_float] = ACTIONS(737), + [anon_sym_await] = ACTIONS(739), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_none] = ACTIONS(721), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), - }, - [175] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [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(771), - [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(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), + [sym_string_start] = ACTIONS(741), + }, + [STATE(167)] = { + [sym_list_splat_pattern] = STATE(1376), + [sym_primary_expression] = STATE(1114), + [sym_binary_operator] = STATE(1308), + [sym_unary_operator] = STATE(1308), + [sym_attribute] = STATE(1308), + [sym_subscript] = STATE(1308), + [sym_call] = STATE(1308), + [sym_list] = STATE(1308), + [sym_set] = STATE(1308), + [sym_tuple] = STATE(1308), + [sym_dictionary] = STATE(1308), + [sym_list_comprehension] = STATE(1308), + [sym_dictionary_comprehension] = STATE(1308), + [sym_set_comprehension] = STATE(1308), + [sym_generator_expression] = STATE(1308), + [sym_parenthesized_expression] = STATE(1308), + [sym_concatenated_string] = STATE(1308), + [sym_string] = STATE(985), + [sym_await] = STATE(1308), + [sym_identifier] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_print] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(773), + [anon_sym_async] = ACTIONS(771), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(781), + [sym_integer] = ACTIONS(765), + [sym_float] = ACTIONS(781), + [anon_sym_await] = ACTIONS(783), + [sym_true] = ACTIONS(765), + [sym_false] = ACTIONS(765), + [sym_none] = ACTIONS(765), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), - }, - [176] = { - [sym_list_splat_pattern] = STATE(1200), - [sym_primary_expression] = STATE(1011), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym_concatenated_string] = STATE(1226), + [sym_string_start] = ACTIONS(785), + }, + [STATE(168)] = { + [sym_list_splat_pattern] = STATE(1407), + [sym_primary_expression] = STATE(1042), + [sym_binary_operator] = STATE(1349), + [sym_unary_operator] = STATE(1349), + [sym_attribute] = STATE(1349), + [sym_subscript] = STATE(1349), + [sym_call] = STATE(1349), + [sym_list] = STATE(1349), + [sym_set] = STATE(1349), + [sym_tuple] = STATE(1349), + [sym_dictionary] = STATE(1349), + [sym_list_comprehension] = STATE(1349), + [sym_dictionary_comprehension] = STATE(1349), + [sym_set_comprehension] = STATE(1349), + [sym_generator_expression] = STATE(1349), + [sym_parenthesized_expression] = STATE(1349), + [sym_concatenated_string] = STATE(1349), [sym_string] = STATE(977), - [sym_await] = STATE(1226), - [sym_identifier] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_print] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(811), - [anon_sym_async] = ACTIONS(809), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(809), - [anon_sym_type] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [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(815), - [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(819), - [sym_integer] = ACTIONS(803), - [sym_float] = ACTIONS(819), - [anon_sym_await] = ACTIONS(821), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_none] = ACTIONS(803), + [sym_await] = STATE(1349), + [sym_identifier] = ACTIONS(697), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(699), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_print] = ACTIONS(703), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(705), + [anon_sym_async] = ACTIONS(703), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(703), + [anon_sym_type] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(715), + [sym_integer] = ACTIONS(697), + [sym_float] = ACTIONS(715), + [anon_sym_await] = ACTIONS(717), + [sym_true] = ACTIONS(697), + [sym_false] = ACTIONS(697), + [sym_none] = ACTIONS(697), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(823), - }, - [177] = { - [sym_list_splat_pattern] = STATE(1200), - [sym_primary_expression] = STATE(1011), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym_concatenated_string] = STATE(1226), - [sym_string] = STATE(977), - [sym_await] = STATE(1226), - [sym_identifier] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_print] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(811), - [anon_sym_async] = ACTIONS(809), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(809), - [anon_sym_type] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [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(815), - [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(819), - [sym_integer] = ACTIONS(803), - [sym_float] = ACTIONS(819), - [anon_sym_await] = ACTIONS(821), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_none] = ACTIONS(803), + [sym_string_start] = ACTIONS(719), + }, + [STATE(169)] = { + [sym_list_splat_pattern] = STATE(1254), + [sym_primary_expression] = STATE(993), + [sym_binary_operator] = STATE(1148), + [sym_unary_operator] = STATE(1148), + [sym_attribute] = STATE(1148), + [sym_subscript] = STATE(1148), + [sym_call] = STATE(1148), + [sym_list] = STATE(1148), + [sym_set] = STATE(1148), + [sym_tuple] = STATE(1148), + [sym_dictionary] = STATE(1148), + [sym_list_comprehension] = STATE(1148), + [sym_dictionary_comprehension] = STATE(1148), + [sym_set_comprehension] = STATE(1148), + [sym_generator_expression] = STATE(1148), + [sym_parenthesized_expression] = STATE(1148), + [sym_concatenated_string] = STATE(1148), + [sym_string] = STATE(970), + [sym_await] = STATE(1148), + [sym_identifier] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_print] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_match] = ACTIONS(795), + [anon_sym_async] = ACTIONS(793), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(793), + [anon_sym_type] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_RBRACK] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(799), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(803), + [sym_integer] = ACTIONS(787), + [sym_float] = ACTIONS(803), + [anon_sym_await] = ACTIONS(805), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_none] = ACTIONS(787), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(823), - }, - [178] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_else] = ACTIONS(674), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(807), + }, + [STATE(170)] = { + [sym_list_splat_pattern] = STATE(1300), + [sym_primary_expression] = STATE(1105), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(316), + [anon_sym_SEMI] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_print] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(312), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(662), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(662), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(312), + [anon_sym_DASH_EQ] = ACTIONS(312), + [anon_sym_STAR_EQ] = ACTIONS(312), + [anon_sym_SLASH_EQ] = ACTIONS(312), + [anon_sym_AT_EQ] = ACTIONS(312), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), + [anon_sym_PERCENT_EQ] = ACTIONS(312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(312), + [anon_sym_GT_GT_EQ] = ACTIONS(312), + [anon_sym_LT_LT_EQ] = ACTIONS(312), + [anon_sym_AMP_EQ] = ACTIONS(312), + [anon_sym_CARET_EQ] = ACTIONS(312), + [anon_sym_PIPE_EQ] = ACTIONS(312), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(670), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [179] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), - [sym_identifier] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_as] = ACTIONS(669), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_print] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(669), - [anon_sym_match] = ACTIONS(789), - [anon_sym_async] = ACTIONS(787), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(669), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_not] = ACTIONS(669), - [anon_sym_and] = ACTIONS(669), - [anon_sym_or] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(793), - [anon_sym_is] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_LT_GT] = ACTIONS(710), - [sym_ellipsis] = ACTIONS(797), - [sym_integer] = ACTIONS(781), - [sym_float] = ACTIONS(797), - [anon_sym_await] = ACTIONS(799), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_none] = ACTIONS(781), + [sym__newline] = ACTIONS(312), + [sym_string_start] = ACTIONS(320), + }, + [STATE(171)] = { + [sym_list_splat_pattern] = STATE(1376), + [sym_primary_expression] = STATE(1114), + [sym_binary_operator] = STATE(1308), + [sym_unary_operator] = STATE(1308), + [sym_attribute] = STATE(1308), + [sym_subscript] = STATE(1308), + [sym_call] = STATE(1308), + [sym_list] = STATE(1308), + [sym_set] = STATE(1308), + [sym_tuple] = STATE(1308), + [sym_dictionary] = STATE(1308), + [sym_list_comprehension] = STATE(1308), + [sym_dictionary_comprehension] = STATE(1308), + [sym_set_comprehension] = STATE(1308), + [sym_generator_expression] = STATE(1308), + [sym_parenthesized_expression] = STATE(1308), + [sym_concatenated_string] = STATE(1308), + [sym_string] = STATE(985), + [sym_await] = STATE(1308), + [sym_identifier] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_as] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_print] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(653), + [anon_sym_match] = ACTIONS(773), + [anon_sym_async] = ACTIONS(771), + [anon_sym_for] = ACTIONS(658), + [anon_sym_in] = ACTIONS(653), + [anon_sym_STAR_STAR] = ACTIONS(694), + [anon_sym_exec] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_not] = ACTIONS(653), + [anon_sym_and] = ACTIONS(653), + [anon_sym_or] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_SLASH_SLASH] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_is] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_LT_EQ] = ACTIONS(694), + [anon_sym_EQ_EQ] = ACTIONS(694), + [anon_sym_BANG_EQ] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_LT_GT] = ACTIONS(694), + [sym_ellipsis] = ACTIONS(781), + [sym_integer] = ACTIONS(765), + [sym_float] = ACTIONS(781), + [anon_sym_await] = ACTIONS(783), + [sym_true] = ACTIONS(765), + [sym_false] = ACTIONS(765), + [sym_none] = ACTIONS(765), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(801), - }, - [180] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_SEMI] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(320), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(684), - [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(316), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(785), + }, + [STATE(172)] = { + [sym_list_splat_pattern] = STATE(1407), + [sym_primary_expression] = STATE(1042), + [sym_binary_operator] = STATE(1349), + [sym_unary_operator] = STATE(1349), + [sym_attribute] = STATE(1349), + [sym_subscript] = STATE(1349), + [sym_call] = STATE(1349), + [sym_list] = STATE(1349), + [sym_set] = STATE(1349), + [sym_tuple] = STATE(1349), + [sym_dictionary] = STATE(1349), + [sym_list_comprehension] = STATE(1349), + [sym_dictionary_comprehension] = STATE(1349), + [sym_set_comprehension] = STATE(1349), + [sym_generator_expression] = STATE(1349), + [sym_parenthesized_expression] = STATE(1349), + [sym_concatenated_string] = STATE(1349), + [sym_string] = STATE(977), + [sym_await] = STATE(1349), + [sym_identifier] = ACTIONS(697), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(699), + [anon_sym_RPAREN] = ACTIONS(276), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_print] = ACTIONS(703), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(705), + [anon_sym_async] = ACTIONS(703), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(703), + [anon_sym_type] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(715), + [sym_integer] = ACTIONS(697), + [sym_float] = ACTIONS(715), + [anon_sym_await] = ACTIONS(717), + [sym_true] = ACTIONS(697), + [sym_false] = ACTIONS(697), + [sym_none] = ACTIONS(697), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(719), + }, + [STATE(173)] = { + [sym_list_splat_pattern] = STATE(1300), + [sym_primary_expression] = STATE(1105), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(651), + [anon_sym_as] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_print] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_if] = ACTIONS(658), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_else] = ACTIONS(658), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(662), + [anon_sym_in] = ACTIONS(658), + [anon_sym_STAR_STAR] = ACTIONS(694), + [anon_sym_exec] = ACTIONS(662), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(308), + [anon_sym_not] = ACTIONS(658), + [anon_sym_and] = ACTIONS(658), + [anon_sym_or] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_SLASH_SLASH] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_LT_EQ] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(651), + [anon_sym_BANG_EQ] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_LT_GT] = ACTIONS(651), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(670), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(320), - [sym_string_start] = ACTIONS(328), - }, - [181] = { - [sym_list_splat_pattern] = STATE(1229), - [sym_primary_expression] = STATE(999), - [sym_binary_operator] = STATE(1152), - [sym_unary_operator] = STATE(1152), - [sym_attribute] = STATE(1152), - [sym_subscript] = STATE(1152), - [sym_call] = STATE(1152), - [sym_list] = STATE(1152), - [sym_set] = STATE(1152), - [sym_tuple] = STATE(1152), - [sym_dictionary] = STATE(1152), - [sym_list_comprehension] = STATE(1152), - [sym_dictionary_comprehension] = STATE(1152), - [sym_set_comprehension] = STATE(1152), - [sym_generator_expression] = STATE(1152), - [sym_parenthesized_expression] = STATE(1152), - [sym_concatenated_string] = STATE(1152), - [sym_string] = STATE(980), - [sym_await] = STATE(1152), - [sym_identifier] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(717), - [anon_sym_print] = ACTIONS(719), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(721), - [anon_sym_async] = ACTIONS(719), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(719), - [anon_sym_type] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(725), - [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(725), - [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(729), - [sym_integer] = ACTIONS(713), - [sym_float] = ACTIONS(729), - [anon_sym_await] = ACTIONS(731), - [sym_true] = ACTIONS(713), - [sym_false] = ACTIONS(713), - [sym_none] = ACTIONS(713), + [sym_string_start] = ACTIONS(320), + }, + [STATE(174)] = { + [sym_list_splat_pattern] = STATE(1300), + [sym_primary_expression] = STATE(1105), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(651), + [anon_sym_as] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_print] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_if] = ACTIONS(658), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(662), + [anon_sym_for] = ACTIONS(658), + [anon_sym_in] = ACTIONS(658), + [anon_sym_STAR_STAR] = ACTIONS(694), + [anon_sym_exec] = ACTIONS(662), + [anon_sym_type] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_RBRACK] = ACTIONS(651), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(308), + [anon_sym_not] = ACTIONS(658), + [anon_sym_and] = ACTIONS(658), + [anon_sym_or] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_SLASH_SLASH] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_LT_EQ] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(651), + [anon_sym_BANG_EQ] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_LT_GT] = ACTIONS(651), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(670), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(733), - }, - [182] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(320), + }, + [STATE(175)] = { + [sym_list_splat_pattern] = STATE(1423), + [sym_primary_expression] = STATE(1224), + [sym_binary_operator] = STATE(1425), + [sym_unary_operator] = STATE(1425), + [sym_attribute] = STATE(1425), + [sym_subscript] = STATE(1425), + [sym_call] = STATE(1425), + [sym_list] = STATE(1425), + [sym_set] = STATE(1425), + [sym_tuple] = STATE(1425), + [sym_dictionary] = STATE(1425), + [sym_list_comprehension] = STATE(1425), + [sym_dictionary_comprehension] = STATE(1425), + [sym_set_comprehension] = STATE(1425), + [sym_generator_expression] = STATE(1425), + [sym_parenthesized_expression] = STATE(1425), + [sym_concatenated_string] = STATE(1425), + [sym_string] = STATE(1098), + [sym_await] = STATE(1425), + [sym_identifier] = ACTIONS(743), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_print] = ACTIONS(749), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_match] = ACTIONS(751), + [anon_sym_async] = ACTIONS(749), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(749), + [anon_sym_type] = ACTIONS(751), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(759), + [sym_integer] = ACTIONS(743), + [sym_float] = ACTIONS(759), + [anon_sym_await] = ACTIONS(761), + [sym_true] = ACTIONS(743), + [sym_false] = ACTIONS(743), + [sym_none] = ACTIONS(743), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [183] = { - [sym_list_splat_pattern] = STATE(1451), - [sym_primary_expression] = STATE(1252), - [sym_binary_operator] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_attribute] = STATE(1462), - [sym_subscript] = STATE(1462), - [sym_call] = STATE(1462), - [sym_list] = STATE(1462), - [sym_set] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_dictionary] = STATE(1462), - [sym_list_comprehension] = STATE(1462), - [sym_dictionary_comprehension] = STATE(1462), - [sym_set_comprehension] = STATE(1462), - [sym_generator_expression] = STATE(1462), - [sym_parenthesized_expression] = STATE(1462), - [sym_concatenated_string] = STATE(1462), - [sym_string] = STATE(1110), - [sym_await] = STATE(1462), - [sym_identifier] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_print] = ACTIONS(741), - [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(743), - [anon_sym_async] = ACTIONS(741), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(741), - [anon_sym_type] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [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(747), - [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(751), - [sym_integer] = ACTIONS(735), - [sym_float] = ACTIONS(751), - [anon_sym_await] = ACTIONS(753), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_none] = ACTIONS(735), + [sym_string_start] = ACTIONS(763), + }, + [STATE(176)] = { + [sym_list_splat_pattern] = STATE(1376), + [sym_primary_expression] = STATE(1114), + [sym_binary_operator] = STATE(1308), + [sym_unary_operator] = STATE(1308), + [sym_attribute] = STATE(1308), + [sym_subscript] = STATE(1308), + [sym_call] = STATE(1308), + [sym_list] = STATE(1308), + [sym_set] = STATE(1308), + [sym_tuple] = STATE(1308), + [sym_dictionary] = STATE(1308), + [sym_list_comprehension] = STATE(1308), + [sym_dictionary_comprehension] = STATE(1308), + [sym_set_comprehension] = STATE(1308), + [sym_generator_expression] = STATE(1308), + [sym_parenthesized_expression] = STATE(1308), + [sym_concatenated_string] = STATE(1308), + [sym_string] = STATE(985), + [sym_await] = STATE(1308), + [sym_identifier] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_print] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_match] = ACTIONS(773), + [anon_sym_async] = ACTIONS(771), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(771), + [anon_sym_type] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(781), + [sym_integer] = ACTIONS(765), + [sym_float] = ACTIONS(781), + [anon_sym_await] = ACTIONS(783), + [sym_true] = ACTIONS(765), + [sym_false] = ACTIONS(765), + [sym_none] = ACTIONS(765), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(755), - }, - [184] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), - [sym_identifier] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_print] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(789), - [anon_sym_async] = ACTIONS(787), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), - [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(793), - [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(797), - [sym_integer] = ACTIONS(781), - [sym_float] = ACTIONS(797), - [anon_sym_await] = ACTIONS(799), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_none] = ACTIONS(781), + [sym_string_start] = ACTIONS(785), + }, + [STATE(177)] = { + [sym_list_splat_pattern] = STATE(1254), + [sym_primary_expression] = STATE(993), + [sym_binary_operator] = STATE(1148), + [sym_unary_operator] = STATE(1148), + [sym_attribute] = STATE(1148), + [sym_subscript] = STATE(1148), + [sym_call] = STATE(1148), + [sym_list] = STATE(1148), + [sym_set] = STATE(1148), + [sym_tuple] = STATE(1148), + [sym_dictionary] = STATE(1148), + [sym_list_comprehension] = STATE(1148), + [sym_dictionary_comprehension] = STATE(1148), + [sym_set_comprehension] = STATE(1148), + [sym_generator_expression] = STATE(1148), + [sym_parenthesized_expression] = STATE(1148), + [sym_concatenated_string] = STATE(1148), + [sym_string] = STATE(970), + [sym_await] = STATE(1148), + [sym_identifier] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_print] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(795), + [anon_sym_async] = ACTIONS(793), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(793), + [anon_sym_type] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_RBRACK] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(799), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(803), + [sym_integer] = ACTIONS(787), + [sym_float] = ACTIONS(803), + [anon_sym_await] = ACTIONS(805), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_none] = ACTIONS(787), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(801), - }, - [185] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [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(771), - [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(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), + [sym_string_start] = ACTIONS(807), + }, + [STATE(178)] = { + [sym_list_splat_pattern] = STATE(1300), + [sym_primary_expression] = STATE(1105), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_print] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(662), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(662), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(308), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(670), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), - }, - [186] = { - [sym_list_splat_pattern] = STATE(1451), - [sym_primary_expression] = STATE(1252), - [sym_binary_operator] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_attribute] = STATE(1462), - [sym_subscript] = STATE(1462), - [sym_call] = STATE(1462), - [sym_list] = STATE(1462), - [sym_set] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_dictionary] = STATE(1462), - [sym_list_comprehension] = STATE(1462), - [sym_dictionary_comprehension] = STATE(1462), - [sym_set_comprehension] = STATE(1462), - [sym_generator_expression] = STATE(1462), - [sym_parenthesized_expression] = STATE(1462), - [sym_concatenated_string] = STATE(1462), - [sym_string] = STATE(1110), - [sym_await] = STATE(1462), - [sym_identifier] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_print] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(743), - [anon_sym_async] = ACTIONS(741), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(741), - [anon_sym_type] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [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(747), - [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(751), - [sym_integer] = ACTIONS(735), - [sym_float] = ACTIONS(751), - [anon_sym_await] = ACTIONS(753), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_none] = ACTIONS(735), + [sym_string_start] = ACTIONS(320), + }, + [STATE(179)] = { + [sym_list_splat_pattern] = STATE(1407), + [sym_primary_expression] = STATE(1042), + [sym_binary_operator] = STATE(1349), + [sym_unary_operator] = STATE(1349), + [sym_attribute] = STATE(1349), + [sym_subscript] = STATE(1349), + [sym_call] = STATE(1349), + [sym_list] = STATE(1349), + [sym_set] = STATE(1349), + [sym_tuple] = STATE(1349), + [sym_dictionary] = STATE(1349), + [sym_list_comprehension] = STATE(1349), + [sym_dictionary_comprehension] = STATE(1349), + [sym_set_comprehension] = STATE(1349), + [sym_generator_expression] = STATE(1349), + [sym_parenthesized_expression] = STATE(1349), + [sym_concatenated_string] = STATE(1349), + [sym_string] = STATE(977), + [sym_await] = STATE(1349), + [sym_identifier] = ACTIONS(697), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(699), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_print] = ACTIONS(703), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(705), + [anon_sym_async] = ACTIONS(703), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(703), + [anon_sym_type] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(715), + [sym_integer] = ACTIONS(697), + [sym_float] = ACTIONS(715), + [anon_sym_await] = ACTIONS(717), + [sym_true] = ACTIONS(697), + [sym_false] = ACTIONS(697), + [sym_none] = ACTIONS(697), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(755), - }, - [187] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(320), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(684), - [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(316), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(719), + }, + [STATE(180)] = { + [sym_list_splat_pattern] = STATE(1423), + [sym_primary_expression] = STATE(1224), + [sym_binary_operator] = STATE(1425), + [sym_unary_operator] = STATE(1425), + [sym_attribute] = STATE(1425), + [sym_subscript] = STATE(1425), + [sym_call] = STATE(1425), + [sym_list] = STATE(1425), + [sym_set] = STATE(1425), + [sym_tuple] = STATE(1425), + [sym_dictionary] = STATE(1425), + [sym_list_comprehension] = STATE(1425), + [sym_dictionary_comprehension] = STATE(1425), + [sym_set_comprehension] = STATE(1425), + [sym_generator_expression] = STATE(1425), + [sym_parenthesized_expression] = STATE(1425), + [sym_concatenated_string] = STATE(1425), + [sym_string] = STATE(1098), + [sym_await] = STATE(1425), + [sym_identifier] = ACTIONS(743), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_print] = ACTIONS(749), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_match] = ACTIONS(751), + [anon_sym_async] = ACTIONS(749), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(749), + [anon_sym_type] = ACTIONS(751), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(759), + [sym_integer] = ACTIONS(743), + [sym_float] = ACTIONS(759), + [anon_sym_await] = ACTIONS(761), + [sym_true] = ACTIONS(743), + [sym_false] = ACTIONS(743), + [sym_none] = ACTIONS(743), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [188] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(669), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_STAR_STAR] = ACTIONS(669), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(669), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(669), - [anon_sym_SLASH_SLASH] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_CARET] = ACTIONS(669), - [anon_sym_LT_LT] = ACTIONS(669), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_AT_EQ] = ACTIONS(667), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(763), + }, + [STATE(181)] = { + [sym_list_splat_pattern] = STATE(1300), + [sym_primary_expression] = STATE(1105), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_print] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(662), + [anon_sym_STAR_STAR] = ACTIONS(653), + [anon_sym_exec] = ACTIONS(662), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_SLASH_SLASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(651), + [anon_sym_DASH_EQ] = ACTIONS(651), + [anon_sym_STAR_EQ] = ACTIONS(651), + [anon_sym_SLASH_EQ] = ACTIONS(651), + [anon_sym_AT_EQ] = ACTIONS(651), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(651), + [anon_sym_PERCENT_EQ] = ACTIONS(651), + [anon_sym_STAR_STAR_EQ] = ACTIONS(651), + [anon_sym_GT_GT_EQ] = ACTIONS(651), + [anon_sym_LT_LT_EQ] = ACTIONS(651), + [anon_sym_AMP_EQ] = ACTIONS(651), + [anon_sym_CARET_EQ] = ACTIONS(651), + [anon_sym_PIPE_EQ] = ACTIONS(651), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(670), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [189] = { - [sym_named_expression] = STATE(1695), - [sym__named_expression_lhs] = STATE(2649), - [sym_list_splat] = STATE(2377), - [sym_parenthesized_list_splat] = STATE(2377), - [sym_list_splat_pattern] = STATE(1200), - [sym_as_pattern] = STATE(1695), - [sym_expression] = STATE(1663), - [sym_primary_expression] = STATE(928), - [sym_not_operator] = STATE(1695), - [sym_boolean_operator] = STATE(1695), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_comparison_operator] = STATE(1695), - [sym_lambda] = STATE(1695), - [sym_yield] = STATE(2377), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_type] = STATE(1950), - [sym_splat_type] = STATE(2064), - [sym_generic_type] = STATE(2064), - [sym_union_type] = STATE(2064), - [sym_constrained_type] = STATE(2064), - [sym_member_type] = STATE(2064), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym__collection_elements] = STATE(2685), - [sym_conditional_expression] = STATE(1695), - [sym_concatenated_string] = STATE(1226), - [sym_string] = STATE(977), - [sym_await] = STATE(1226), - [sym_identifier] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(827), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_print] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_async] = ACTIONS(831), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_exec] = ACTIONS(831), - [anon_sym_type] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_not] = ACTIONS(841), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_lambda] = ACTIONS(843), - [anon_sym_yield] = ACTIONS(845), - [sym_ellipsis] = ACTIONS(819), - [sym_integer] = ACTIONS(803), - [sym_float] = ACTIONS(819), - [anon_sym_await] = ACTIONS(847), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_none] = ACTIONS(803), + [sym_string_start] = ACTIONS(320), + }, + [STATE(182)] = { + [sym_list_splat_pattern] = STATE(1300), + [sym_primary_expression] = STATE(1105), + [sym_binary_operator] = STATE(1392), + [sym_unary_operator] = STATE(1392), + [sym_attribute] = STATE(1392), + [sym_subscript] = STATE(1392), + [sym_call] = STATE(1392), + [sym_list] = STATE(1392), + [sym_set] = STATE(1392), + [sym_tuple] = STATE(1392), + [sym_dictionary] = STATE(1392), + [sym_list_comprehension] = STATE(1392), + [sym_dictionary_comprehension] = STATE(1392), + [sym_set_comprehension] = STATE(1392), + [sym_generator_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [sym_string] = STATE(1003), + [sym_await] = STATE(1392), + [sym_identifier] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_print] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(312), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(662), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(662), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(312), + [anon_sym_DASH_EQ] = ACTIONS(312), + [anon_sym_STAR_EQ] = ACTIONS(312), + [anon_sym_SLASH_EQ] = ACTIONS(312), + [anon_sym_AT_EQ] = ACTIONS(312), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), + [anon_sym_PERCENT_EQ] = ACTIONS(312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(312), + [anon_sym_GT_GT_EQ] = ACTIONS(312), + [anon_sym_LT_LT_EQ] = ACTIONS(312), + [anon_sym_AMP_EQ] = ACTIONS(312), + [anon_sym_CARET_EQ] = ACTIONS(312), + [anon_sym_PIPE_EQ] = ACTIONS(312), + [sym_ellipsis] = ACTIONS(314), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(314), + [anon_sym_await] = ACTIONS(670), + [sym_true] = ACTIONS(316), + [sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(320), + }, + [STATE(183)] = { + [sym_named_expression] = STATE(1689), + [sym__named_expression_lhs] = STATE(2626), + [sym_list_splat] = STATE(2485), + [sym_parenthesized_list_splat] = STATE(2485), + [sym_list_splat_pattern] = STATE(1254), + [sym_as_pattern] = STATE(1689), + [sym_expression] = STATE(1646), + [sym_primary_expression] = STATE(919), + [sym_not_operator] = STATE(1689), + [sym_boolean_operator] = STATE(1689), + [sym_binary_operator] = STATE(1148), + [sym_unary_operator] = STATE(1148), + [sym_comparison_operator] = STATE(1689), + [sym_lambda] = STATE(1689), + [sym_yield] = STATE(2485), + [sym_attribute] = STATE(1148), + [sym_subscript] = STATE(1148), + [sym_call] = STATE(1148), + [sym_type] = STATE(1956), + [sym_splat_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_union_type] = STATE(2005), + [sym_constrained_type] = STATE(2005), + [sym_member_type] = STATE(2005), + [sym_list] = STATE(1148), + [sym_set] = STATE(1148), + [sym_tuple] = STATE(1148), + [sym_dictionary] = STATE(1148), + [sym_list_comprehension] = STATE(1148), + [sym_dictionary_comprehension] = STATE(1148), + [sym_set_comprehension] = STATE(1148), + [sym_generator_expression] = STATE(1148), + [sym_parenthesized_expression] = STATE(1148), + [sym__collection_elements] = STATE(2725), + [sym_conditional_expression] = STATE(1689), + [sym_concatenated_string] = STATE(1148), + [sym_string] = STATE(970), + [sym_await] = STATE(1148), + [sym_identifier] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_print] = ACTIONS(815), + [anon_sym_match] = ACTIONS(817), + [anon_sym_async] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(819), + [anon_sym_exec] = ACTIONS(815), + [anon_sym_type] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_RBRACK] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(799), + [anon_sym_not] = ACTIONS(825), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_lambda] = ACTIONS(827), + [anon_sym_yield] = ACTIONS(829), + [sym_ellipsis] = ACTIONS(803), + [sym_integer] = ACTIONS(787), + [sym_float] = ACTIONS(803), + [anon_sym_await] = ACTIONS(831), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_none] = ACTIONS(787), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(823), + [sym_string_start] = ACTIONS(807), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 30, - ACTIONS(723), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(835), 1, anon_sym_LPAREN, - ACTIONS(853), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(855), 1, + ACTIONS(839), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(847), 1, anon_sym_RBRACE, - ACTIONS(865), 1, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(851), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(853), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(855), 1, anon_sym_await, - STATE(964), 1, + STATE(880), 1, sym_primary_expression, - STATE(980), 1, + STATE(963), 1, sym_string, - STATE(1229), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1673), 1, + STATE(1665), 1, sym_expression, - STATE(1852), 1, + STATE(1854), 1, sym_pair, - STATE(2347), 1, + STATE(2391), 1, sym_dictionary_splat, - STATE(2645), 1, + STATE(2646), 1, sym__named_expression_lhs, - STATE(2690), 1, + STATE(2683), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2274), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28976,7 +28766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28993,79 +28783,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [124] = 31, - ACTIONS(773), 1, + [124] = 30, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(835), 1, anon_sym_LPAREN, - ACTIONS(877), 1, - anon_sym_RPAREN, - ACTIONS(879), 1, + ACTIONS(839), 1, anon_sym_STAR, - ACTIONS(885), 1, - anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(845), 1, + anon_sym_STAR_STAR, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(851), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(853), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(855), 1, anon_sym_await, - STATE(972), 1, + ACTIONS(857), 1, + anon_sym_COMMA, + ACTIONS(859), 1, + anon_sym_RBRACE, + STATE(880), 1, sym_primary_expression, - STATE(1044), 1, + STATE(963), 1, sym_string, - STATE(1391), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1661), 1, sym_expression, - STATE(2376), 1, - sym_yield, - STATE(2424), 1, - sym_pattern, - STATE(2684), 1, + STATE(1855), 1, + sym_pair, + STATE(2241), 1, + sym_dictionary_splat, + STATE(2646), 1, sym__named_expression_lhs, - STATE(2773), 1, - sym__patterns, - STATE(2790), 1, + STATE(2696), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, - sym_attribute, - sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2274), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29073,9 +28860,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29088,78 +28877,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [250] = 30, - ACTIONS(817), 1, + [248] = 30, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(835), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(839), 1, anon_sym_STAR, - ACTIONS(905), 1, - anon_sym_LBRACK, - ACTIONS(907), 1, - anon_sym_RBRACK, - ACTIONS(909), 1, + ACTIONS(845), 1, + anon_sym_STAR_STAR, + ACTIONS(849), 1, + anon_sym_not, + ACTIONS(851), 1, + anon_sym_lambda, + ACTIONS(853), 1, + anon_sym_yield, + ACTIONS(855), 1, anon_sym_await, - STATE(928), 1, + ACTIONS(861), 1, + anon_sym_COMMA, + ACTIONS(863), 1, + anon_sym_RBRACE, + STATE(880), 1, sym_primary_expression, - STATE(977), 1, + STATE(963), 1, sym_string, - STATE(1416), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1654), 1, sym_expression, - STATE(2378), 1, - sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2685), 1, + STATE(1862), 1, + sym_pair, + STATE(2314), 1, + sym_dictionary_splat, + STATE(2597), 1, sym__collection_elements, - STATE(2713), 1, - sym__patterns, + STATE(2646), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2274), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29167,9 +28954,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29182,71 +28971,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [374] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [372] = 31, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(869), 1, + anon_sym_RPAREN, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(877), 1, + anon_sym_LBRACK, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(911), 1, - anon_sym_COMMA, - ACTIONS(913), 1, - anon_sym_RBRACE, - STATE(964), 1, + STATE(956), 1, sym_primary_expression, - STATE(980), 1, + STATE(977), 1, sym_string, - STATE(1229), 1, + STATE(1314), 1, sym_list_splat_pattern, - STATE(1678), 1, + STATE(1679), 1, sym_expression, - STATE(1882), 1, - sym_pair, - STATE(2254), 1, - sym_dictionary_splat, - STATE(2645), 1, - sym__named_expression_lhs, - STATE(2752), 1, + STATE(2373), 1, + sym_yield, + STATE(2404), 1, + sym_pattern, + STATE(2653), 1, sym__collection_elements, + STATE(2712), 1, + sym__named_expression_lhs, + STATE(2729), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(1327), 2, + sym_attribute, + sym_subscript, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2537), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(713), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, @@ -29259,11 +29051,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1349), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29277,75 +29067,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [498] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(851), 1, - anon_sym_LPAREN, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(887), 1, + sym_identifier, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(897), 1, + anon_sym_LBRACK, + ACTIONS(899), 1, + anon_sym_RBRACK, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(915), 1, - anon_sym_COMMA, - ACTIONS(917), 1, - anon_sym_RBRACE, - STATE(964), 1, + STATE(919), 1, sym_primary_expression, - STATE(980), 1, + STATE(970), 1, sym_string, - STATE(1229), 1, + STATE(1351), 1, sym_list_splat_pattern, - STATE(1675), 1, + STATE(1712), 1, sym_expression, - STATE(1857), 1, - sym_pair, STATE(2480), 1, - sym_dictionary_splat, - STATE(2645), 1, + sym_pattern, + STATE(2626), 1, sym__named_expression_lhs, - STATE(2729), 1, + STATE(2658), 1, + sym__patterns, + STATE(2706), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(895), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(1355), 2, + sym_attribute, + sym_subscript, + STATE(2561), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(893), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2485), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29353,11 +29145,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1148), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29370,79 +29160,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [622] = 31, - ACTIONS(773), 1, + [622] = 30, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(835), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(839), 1, anon_sym_STAR, - ACTIONS(885), 1, - anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(845), 1, + anon_sym_STAR_STAR, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(851), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(853), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(919), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(903), 1, + anon_sym_COMMA, + ACTIONS(905), 1, + anon_sym_RBRACE, + STATE(880), 1, sym_primary_expression, - STATE(1044), 1, + STATE(963), 1, sym_string, - STATE(1391), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1662), 1, sym_expression, - STATE(2424), 1, - sym_pattern, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(1840), 1, + sym_pair, + STATE(2296), 1, + sym_dictionary_splat, + STATE(2646), 1, sym__named_expression_lhs, - STATE(2694), 1, - sym__patterns, - STATE(2778), 1, + STATE(2723), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, - sym_attribute, - sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2274), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29450,9 +29237,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29465,78 +29254,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [748] = 30, - ACTIONS(817), 1, + [746] = 31, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(879), 1, + anon_sym_not, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(921), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(907), 1, + anon_sym_RPAREN, + STATE(956), 1, sym_primary_expression, STATE(977), 1, sym_string, - STATE(1416), 1, + STATE(1314), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1679), 1, sym_expression, - STATE(2378), 1, + STATE(2373), 1, + sym_yield, + STATE(2404), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2652), 1, + STATE(2629), 1, sym__patterns, - STATE(2724), 1, + STATE(2653), 1, sym__collection_elements, + STATE(2712), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1327), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2537), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29544,7 +29334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1349), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29560,75 +29350,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [872] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(851), 1, - anon_sym_LPAREN, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(887), 1, + sym_identifier, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(897), 1, + anon_sym_LBRACK, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(923), 1, - anon_sym_COMMA, - ACTIONS(925), 1, - anon_sym_RBRACE, - STATE(964), 1, + ACTIONS(909), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(980), 1, + STATE(970), 1, sym_string, - STATE(1229), 1, + STATE(1351), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1706), 1, sym_expression, - STATE(1879), 1, - sym_pair, - STATE(2306), 1, - sym_dictionary_splat, - STATE(2645), 1, - sym__named_expression_lhs, - STATE(2740), 1, + STATE(2480), 1, + sym_pattern, + STATE(2609), 1, + sym__patterns, + STATE(2612), 1, sym__collection_elements, + STATE(2626), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(895), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(1355), 2, + sym_attribute, + sym_subscript, + STATE(2561), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(893), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2485), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29636,11 +29428,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1148), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29653,80 +29443,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [996] = 32, - ACTIONS(773), 1, + [996] = 31, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(927), 1, + ACTIONS(911), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1391), 1, + STATE(1314), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1679), 1, sym_expression, - STATE(2304), 1, + STATE(2373), 1, sym_yield, - STATE(2424), 1, + STATE(2404), 1, sym_pattern, - STATE(2488), 1, - sym_list_splat, - STATE(2489), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2691), 1, - sym__collection_elements, - STATE(2692), 1, + STATE(2629), 1, sym__patterns, + STATE(2653), 1, + sym__collection_elements, + STATE(2712), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1327), 2, sym_attribute, sym_subscript, - STATE(2597), 2, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2537), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29734,7 +29523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1349), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29749,80 +29538,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1124] = 32, - ACTIONS(773), 1, + [1122] = 30, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(825), 1, + anon_sym_not, + ACTIONS(827), 1, + anon_sym_lambda, + ACTIONS(829), 1, + anon_sym_yield, + ACTIONS(887), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(891), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(897), 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, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(929), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(913), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(1044), 1, + STATE(970), 1, sym_string, - STATE(1391), 1, + STATE(1351), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1715), 1, sym_expression, - STATE(2269), 1, - sym_list_splat, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2424), 1, + STATE(2480), 1, sym_pattern, - STATE(2470), 1, - sym_yield, - STATE(2684), 1, + STATE(2626), 1, sym__named_expression_lhs, - STATE(2694), 1, - sym__patterns, - STATE(2704), 1, + STATE(2734), 1, sym__collection_elements, + STATE(2747), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(895), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1355), 2, sym_attribute, sym_subscript, - STATE(2597), 2, + STATE(2561), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(893), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2485), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29830,7 +29617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1148), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29845,79 +29632,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1252] = 31, - ACTIONS(773), 1, + [1246] = 30, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(835), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(839), 1, anon_sym_STAR, - ACTIONS(885), 1, - anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(845), 1, + anon_sym_STAR_STAR, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(851), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(853), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(931), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(915), 1, + anon_sym_COMMA, + ACTIONS(917), 1, + anon_sym_RBRACE, + STATE(880), 1, sym_primary_expression, - STATE(1044), 1, + STATE(963), 1, sym_string, - STATE(1391), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1663), 1, sym_expression, - STATE(2424), 1, - sym_pattern, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(1842), 1, + sym_pair, + STATE(2346), 1, + sym_dictionary_splat, + STATE(2646), 1, sym__named_expression_lhs, - STATE(2773), 1, - sym__patterns, - STATE(2778), 1, + STATE(2677), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, - sym_attribute, - sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2274), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29925,9 +29709,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29940,78 +29726,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1378] = 30, - ACTIONS(817), 1, + [1370] = 30, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(835), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(839), 1, anon_sym_STAR, - ACTIONS(905), 1, - anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(845), 1, + anon_sym_STAR_STAR, + ACTIONS(849), 1, + anon_sym_not, + ACTIONS(851), 1, + anon_sym_lambda, + ACTIONS(853), 1, + anon_sym_yield, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(933), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(919), 1, + anon_sym_COMMA, + ACTIONS(921), 1, + anon_sym_RBRACE, + STATE(880), 1, sym_primary_expression, - STATE(977), 1, + STATE(963), 1, sym_string, - STATE(1416), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1660), 1, sym_expression, - STATE(2378), 1, - sym_pattern, - STATE(2649), 1, + STATE(1848), 1, + sym_pair, + STATE(2442), 1, + sym_dictionary_splat, + STATE(2646), 1, sym__named_expression_lhs, - STATE(2713), 1, - sym__patterns, - STATE(2799), 1, + STATE(2695), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2274), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30019,9 +29803,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30034,76 +29820,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1502] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, - anon_sym_LBRACE, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(849), 1, + [1494] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(61), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(935), 1, - anon_sym_COMMA, - ACTIONS(937), 1, - anon_sym_RBRACE, - STATE(964), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(632), 1, + sym_list_splat_pattern, + STATE(951), 1, sym_primary_expression, - STATE(980), 1, + STATE(953), 1, sym_string, - STATE(1229), 1, - sym_list_splat_pattern, - STATE(1667), 1, + STATE(1623), 1, + sym_pattern, + STATE(1631), 1, + sym_pattern_list, + STATE(1812), 1, sym_expression, - STATE(1870), 1, - sym_pair, - STATE(2349), 1, - sym_dictionary_splat, - STATE(2645), 1, + STATE(2724), 1, sym__named_expression_lhs, - STATE(2674), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(409), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(635), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(411), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(713), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(2560), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30111,11 +29897,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1052), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30128,79 +29912,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1626] = 31, - ACTIONS(773), 1, + [1614] = 32, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(939), 1, + ACTIONS(923), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1391), 1, + STATE(1314), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1672), 1, sym_expression, - STATE(2424), 1, - sym_pattern, - STATE(2499), 1, + STATE(2377), 1, sym_yield, - STATE(2684), 1, + STATE(2404), 1, + sym_pattern, + STATE(2457), 1, + sym_parenthesized_list_splat, + STATE(2465), 1, + sym_list_splat, + STATE(2616), 1, + sym__collection_elements, + STATE(2712), 1, sym__named_expression_lhs, - STATE(2692), 1, + STATE(2729), 1, sym__patterns, - STATE(2778), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1327), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2537), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30208,7 +29993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1349), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30223,78 +30008,173 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1752] = 30, - ACTIONS(817), 1, + [1742] = 31, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, + ACTIONS(865), 1, + sym_identifier, + ACTIONS(867), 1, + anon_sym_LPAREN, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(877), 1, + anon_sym_LBRACK, + ACTIONS(879), 1, + anon_sym_not, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(885), 1, + anon_sym_await, + ACTIONS(925), 1, + anon_sym_RPAREN, + STATE(956), 1, + sym_primary_expression, + STATE(977), 1, + sym_string, + STATE(1314), 1, + sym_list_splat_pattern, + STATE(1679), 1, + sym_expression, + STATE(2373), 1, + sym_yield, + STATE(2404), 1, + sym_pattern, + STATE(2653), 1, + sym__collection_elements, + STATE(2712), 1, + sym__named_expression_lhs, + STATE(2776), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(715), 2, + sym_ellipsis, + sym_float, + ACTIONS(875), 2, + anon_sym_match, + anon_sym_type, + STATE(1327), 2, + sym_attribute, + sym_subscript, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2537), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(711), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(873), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(697), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1787), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1349), 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, + [1868] = 30, + ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, + sym_string_start, + ACTIONS(825), 1, + anon_sym_not, + ACTIONS(827), 1, + anon_sym_lambda, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(887), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(891), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(897), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(941), 1, + ACTIONS(927), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1416), 1, + STATE(1351), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1709), 1, sym_expression, - STATE(2378), 1, + STATE(2480), 1, sym_pattern, - STATE(2649), 1, + STATE(2609), 1, + sym__patterns, + STATE(2626), 1, sym__named_expression_lhs, - STATE(2685), 1, + STATE(2725), 1, sym__collection_elements, - STATE(2718), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(895), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1355), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2561), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(893), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2485), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30302,7 +30182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1148), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30317,76 +30197,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1876] = 30, - ACTIONS(723), 1, + [1992] = 30, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(835), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(839), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(851), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(853), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(943), 1, + ACTIONS(929), 1, anon_sym_COMMA, - ACTIONS(945), 1, + ACTIONS(931), 1, anon_sym_RBRACE, - STATE(964), 1, + STATE(880), 1, sym_primary_expression, - STATE(980), 1, + STATE(963), 1, sym_string, - STATE(1229), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1665), 1, + STATE(1664), 1, sym_expression, - STATE(1851), 1, + STATE(1849), 1, sym_pair, - STATE(2379), 1, + STATE(2369), 1, sym_dictionary_splat, - STATE(2645), 1, - sym__named_expression_lhs, - STATE(2656), 1, + STATE(2604), 1, sym__collection_elements, + STATE(2646), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2274), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30394,7 +30274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30411,78 +30291,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2000] = 30, - ACTIONS(817), 1, + [2116] = 30, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(887), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(891), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(897), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(947), 1, + ACTIONS(933), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1416), 1, + STATE(1351), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1669), 1, sym_expression, - STATE(2378), 1, + STATE(2480), 1, sym_pattern, - STATE(2649), 1, + STATE(2626), 1, sym__named_expression_lhs, - STATE(2713), 1, + STATE(2747), 1, sym__patterns, - STATE(2761), 1, + STATE(2750), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(895), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1355), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2561), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(893), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2485), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30490,7 +30370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1148), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30505,79 +30385,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2124] = 31, - ACTIONS(773), 1, + [2240] = 31, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(949), 1, + ACTIONS(935), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1391), 1, + STATE(1314), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1699), 1, sym_expression, - STATE(2424), 1, + STATE(2404), 1, sym_pattern, - STATE(2499), 1, + STATE(2407), 1, sym_yield, - STATE(2673), 1, + STATE(2629), 1, sym__patterns, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, - STATE(2778), 1, + STATE(2766), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1327), 2, sym_attribute, sym_subscript, - STATE(2368), 2, + STATE(2460), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2537), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30585,7 +30465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1349), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30600,78 +30480,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2250] = 30, - ACTIONS(817), 1, + [2366] = 31, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(879), 1, + anon_sym_not, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(951), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(937), 1, + anon_sym_RPAREN, + STATE(956), 1, sym_primary_expression, STATE(977), 1, sym_string, - STATE(1416), 1, + STATE(1314), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1679), 1, sym_expression, - STATE(2378), 1, + STATE(2373), 1, + sym_yield, + STATE(2404), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2685), 1, - sym__collection_elements, - STATE(2713), 1, + STATE(2642), 1, sym__patterns, + STATE(2653), 1, + sym__collection_elements, + STATE(2712), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1327), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2537), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30679,7 +30560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1349), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30694,76 +30575,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2374] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [2492] = 30, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(851), 1, - anon_sym_LPAREN, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(887), 1, + sym_identifier, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(897), 1, + anon_sym_LBRACK, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(953), 1, - anon_sym_COMMA, - ACTIONS(955), 1, - anon_sym_RBRACE, - STATE(964), 1, + ACTIONS(939), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(980), 1, + STATE(970), 1, sym_string, - STATE(1229), 1, + STATE(1351), 1, sym_list_splat_pattern, - STATE(1671), 1, + STATE(1709), 1, sym_expression, - STATE(1889), 1, - sym_pair, - STATE(2406), 1, - sym_dictionary_splat, - STATE(2645), 1, + STATE(2480), 1, + sym_pattern, + STATE(2626), 1, sym__named_expression_lhs, - STATE(2654), 1, + STATE(2725), 1, sym__collection_elements, + STATE(2747), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(895), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(1355), 2, + sym_attribute, + sym_subscript, + STATE(2561), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(893), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2485), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30771,11 +30654,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1148), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30788,79 +30669,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2498] = 31, - ACTIONS(773), 1, + [2616] = 31, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(957), 1, + ACTIONS(941), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1391), 1, + STATE(1314), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1679), 1, sym_expression, - STATE(2424), 1, - sym_pattern, - STATE(2428), 1, + STATE(2373), 1, sym_yield, - STATE(2659), 1, + STATE(2404), 1, + sym_pattern, + STATE(2653), 1, sym__collection_elements, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2773), 1, + STATE(2654), 1, sym__patterns, + STATE(2712), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1327), 2, sym_attribute, sym_subscript, - STATE(2368), 2, + STATE(2460), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2537), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30868,7 +30749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1349), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30883,79 +30764,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2624] = 31, - ACTIONS(773), 1, + [2742] = 30, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(825), 1, + anon_sym_not, + ACTIONS(827), 1, + anon_sym_lambda, + ACTIONS(829), 1, + anon_sym_yield, + ACTIONS(887), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(891), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(897), 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, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(959), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(943), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(1044), 1, + STATE(970), 1, sym_string, - STATE(1391), 1, + STATE(1351), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1709), 1, sym_expression, - STATE(2424), 1, + STATE(2480), 1, sym_pattern, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(2626), 1, sym__named_expression_lhs, - STATE(2773), 1, + STATE(2658), 1, sym__patterns, - STATE(2778), 1, + STATE(2725), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(895), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1355), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2561), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(893), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2485), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30963,7 +30843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1148), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30978,76 +30858,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2750] = 28, - ACTIONS(9), 1, + [2866] = 30, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, + sym_string_start, + ACTIONS(833), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(835), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(839), 1, anon_sym_STAR, - ACTIONS(61), 1, - anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(845), 1, + anon_sym_STAR_STAR, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(851), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(853), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(645), 1, - sym_list_splat_pattern, - STATE(968), 1, + ACTIONS(945), 1, + anon_sym_COMMA, + ACTIONS(947), 1, + anon_sym_RBRACE, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(963), 1, sym_string, - STATE(1641), 1, - sym_pattern_list, - STATE(1651), 1, - sym_pattern, - STATE(1827), 1, + STATE(1213), 1, + sym_list_splat_pattern, + STATE(1650), 1, sym_expression, - STATE(2672), 1, + STATE(1857), 1, + sym_pair, + STATE(2413), 1, + sym_dictionary_splat, + STATE(2606), 1, + sym__collection_elements, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(417), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - STATE(646), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(419), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2274), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2583), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1679), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31055,9 +30935,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 14, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -31070,79 +30952,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2870] = 31, - ACTIONS(773), 1, + [2990] = 31, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(961), 1, + ACTIONS(949), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1391), 1, + STATE(1314), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1699), 1, sym_expression, - STATE(2424), 1, + STATE(2404), 1, sym_pattern, - STATE(2499), 1, + STATE(2407), 1, sym_yield, - STATE(2650), 1, + STATE(2629), 1, sym__patterns, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, - STATE(2778), 1, + STATE(2766), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1327), 2, sym_attribute, sym_subscript, - STATE(2368), 2, + STATE(2460), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2537), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31150,7 +31032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1349), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31165,78 +31047,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2996] = 30, - ACTIONS(817), 1, + [3116] = 30, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(887), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(891), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(897), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(951), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1416), 1, + STATE(1351), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1709), 1, sym_expression, - STATE(2378), 1, + STATE(2480), 1, sym_pattern, - STATE(2649), 1, + STATE(2626), 1, sym__named_expression_lhs, - STATE(2652), 1, + STATE(2703), 1, sym__patterns, - STATE(2685), 1, + STATE(2725), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(895), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1355), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2561), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(893), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2485), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31244,7 +31126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1148), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31259,76 +31141,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3120] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [3240] = 30, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(851), 1, - anon_sym_LPAREN, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(887), 1, + sym_identifier, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(897), 1, + anon_sym_LBRACK, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(965), 1, - anon_sym_COMMA, - ACTIONS(967), 1, - anon_sym_RBRACE, - STATE(964), 1, + ACTIONS(953), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(980), 1, + STATE(970), 1, sym_string, - STATE(1229), 1, + STATE(1351), 1, sym_list_splat_pattern, - STATE(1674), 1, + STATE(1709), 1, sym_expression, - STATE(1871), 1, - sym_pair, - STATE(2433), 1, - sym_dictionary_splat, - STATE(2622), 1, - sym__collection_elements, - STATE(2645), 1, + STATE(2480), 1, + sym_pattern, + STATE(2626), 1, sym__named_expression_lhs, + STATE(2662), 1, + sym__patterns, + STATE(2725), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(895), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(1355), 2, + sym_attribute, + sym_subscript, + STATE(2561), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(893), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2485), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31336,11 +31220,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1148), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31353,78 +31235,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3244] = 30, - ACTIONS(817), 1, + [3364] = 30, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(887), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(891), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(897), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(969), 1, + ACTIONS(955), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1416), 1, + STATE(1351), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1669), 1, sym_expression, - STATE(2378), 1, + STATE(2480), 1, sym_pattern, - STATE(2649), 1, + STATE(2626), 1, sym__named_expression_lhs, - STATE(2718), 1, + STATE(2747), 1, sym__patterns, - STATE(2723), 1, + STATE(2750), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(895), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1355), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2561), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(893), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2485), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31432,7 +31314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1148), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31447,7 +31329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3368] = 28, + [3488] = 28, ACTIONS(9), 1, sym_identifier, ACTIONS(15), 1, @@ -31468,19 +31350,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym_string_start, - STATE(645), 1, + STATE(632), 1, sym_list_splat_pattern, - STATE(968), 1, + STATE(951), 1, sym_primary_expression, - STATE(969), 1, + STATE(953), 1, sym_string, - STATE(1641), 1, - sym_pattern_list, - STATE(1651), 1, + STATE(1623), 1, sym_pattern, - STATE(1827), 1, + STATE(1631), 1, + sym_pattern_list, + STATE(1812), 1, sym_expression, - STATE(2672), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -31488,20 +31370,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(417), 2, + ACTIONS(409), 2, anon_sym_match, anon_sym_type, - STATE(646), 2, + STATE(635), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1638), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(419), 3, + ACTIONS(411), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -31510,13 +31392,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2578), 5, + STATE(2504), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1679), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31524,7 +31406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 14, + STATE(1052), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31539,7 +31421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3488] = 28, + [3608] = 28, ACTIONS(9), 1, sym_identifier, ACTIONS(15), 1, @@ -31560,19 +31442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym_string_start, - STATE(645), 1, + STATE(632), 1, sym_list_splat_pattern, - STATE(968), 1, + STATE(951), 1, sym_primary_expression, - STATE(969), 1, + STATE(953), 1, sym_string, - STATE(1641), 1, - sym_pattern_list, - STATE(1651), 1, + STATE(1623), 1, sym_pattern, - STATE(1827), 1, + STATE(1631), 1, + sym_pattern_list, + STATE(1812), 1, sym_expression, - STATE(2672), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -31580,20 +31462,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(417), 2, + ACTIONS(409), 2, anon_sym_match, anon_sym_type, - STATE(646), 2, + STATE(635), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1638), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(419), 3, + ACTIONS(411), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -31602,13 +31484,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2608), 5, + STATE(2549), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1679), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31616,7 +31498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 14, + STATE(1052), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31631,79 +31513,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3608] = 31, - ACTIONS(773), 1, + [3728] = 31, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(971), 1, + ACTIONS(957), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1391), 1, + STATE(1314), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1692), 1, sym_expression, - STATE(2424), 1, - sym_pattern, - STATE(2428), 1, + STATE(2368), 1, sym_yield, - STATE(2659), 1, + STATE(2404), 1, + sym_pattern, + STATE(2629), 1, + sym__patterns, + STATE(2631), 1, sym__collection_elements, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, - STATE(2773), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1327), 2, sym_attribute, sym_subscript, - STATE(2368), 2, + STATE(2460), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2537), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31711,7 +31593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1349), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31726,78 +31608,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3734] = 30, - ACTIONS(817), 1, + [3854] = 30, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(887), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(891), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(897), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(973), 1, + ACTIONS(959), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1416), 1, + STATE(1351), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1709), 1, sym_expression, - STATE(2378), 1, + STATE(2480), 1, sym_pattern, - STATE(2649), 1, + STATE(2626), 1, sym__named_expression_lhs, - STATE(2685), 1, + STATE(2725), 1, sym__collection_elements, - STATE(2719), 1, + STATE(2747), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(895), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1355), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2561), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(893), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2485), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31805,7 +31687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1148), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31820,172 +31702,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3858] = 30, - ACTIONS(817), 1, + [3978] = 32, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(909), 1, - anon_sym_await, - ACTIONS(975), 1, - anon_sym_RBRACK, - STATE(928), 1, - sym_primary_expression, - STATE(977), 1, - sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1723), 1, - sym_expression, - STATE(2378), 1, - sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2665), 1, - sym__patterns, - STATE(2685), 1, - sym__collection_elements, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(819), 2, - sym_ellipsis, - sym_float, - ACTIONS(903), 2, - anon_sym_match, - anon_sym_type, - STATE(1423), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(815), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(901), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1695), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1226), 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(817), 1, - anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(895), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_LPAREN, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(905), 1, - anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(977), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(961), 1, + anon_sym_RPAREN, + STATE(956), 1, sym_primary_expression, STATE(977), 1, sym_string, - STATE(1416), 1, + STATE(1314), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1719), 1, sym_expression, - STATE(2378), 1, + STATE(2246), 1, + sym_list_splat, + STATE(2249), 1, + sym_parenthesized_list_splat, + STATE(2292), 1, + sym_yield, + STATE(2404), 1, sym_pattern, - STATE(2649), 1, + STATE(2656), 1, + sym__collection_elements, + STATE(2712), 1, sym__named_expression_lhs, - STATE(2713), 1, + STATE(2776), 1, sym__patterns, - STATE(2761), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1327), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2537), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31993,7 +31783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1349), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32009,58 +31799,58 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4106] = 22, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_TILDE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(979), 1, + ACTIONS(963), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(967), 1, anon_sym_LPAREN, - ACTIONS(985), 1, + ACTIONS(969), 1, anon_sym_STAR, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_LBRACK, - ACTIONS(993), 1, + ACTIONS(977), 1, anon_sym_await, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1370), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1614), 1, + STATE(1588), 1, sym_pattern, - STATE(1616), 1, + STATE(1598), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(684), 2, + ACTIONS(668), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(989), 2, + ACTIONS(973), 2, anon_sym_match, anon_sym_type, - STATE(1371), 2, + STATE(1341), 2, sym_attribute, sym_subscript, - STATE(1628), 2, + STATE(1592), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(987), 3, + ACTIONS(971), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32075,7 +31865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(981), 17, + ACTIONS(965), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -32094,58 +31884,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4213] = 22, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_TILDE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(979), 1, + ACTIONS(963), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(967), 1, anon_sym_LPAREN, - ACTIONS(985), 1, + ACTIONS(969), 1, anon_sym_STAR, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_LBRACK, - ACTIONS(993), 1, + ACTIONS(977), 1, anon_sym_await, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1370), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1614), 1, + STATE(1588), 1, sym_pattern, - STATE(1616), 1, + STATE(1598), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(684), 2, + ACTIONS(668), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(989), 2, + ACTIONS(973), 2, anon_sym_match, anon_sym_type, - STATE(1371), 2, + STATE(1341), 2, sym_attribute, sym_subscript, - STATE(1628), 2, + STATE(1592), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(987), 3, + ACTIONS(971), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32160,7 +31950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(995), 17, + ACTIONS(979), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -32179,72 +31969,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4320] = 27, - ACTIONS(702), 1, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(869), 1, - anon_sym_yield, - ACTIONS(997), 1, + ACTIONS(819), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, sym_identifier, - ACTIONS(999), 1, - anon_sym_LPAREN, - ACTIONS(1001), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1007), 1, - anon_sym_LBRACK, - ACTIONS(1009), 1, + ACTIONS(987), 1, + anon_sym_match, + ACTIONS(989), 1, + anon_sym_type, + ACTIONS(991), 1, + anon_sym_RBRACK, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1013), 1, + ACTIONS(997), 1, anon_sym_await, - STATE(927), 1, + STATE(972), 1, sym_primary_expression, - STATE(983), 1, + STATE(1098), 1, sym_string, - STATE(1153), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1757), 1, sym_expression, - STATE(2559), 1, - sym_pattern, - STATE(2781), 1, + STATE(2003), 1, + sym_type, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1005), 2, - anon_sym_match, - anon_sym_type, - STATE(1154), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(700), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1003), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2070), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1760), 7, + STATE(2005), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32252,9 +32040,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 14, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32268,70 +32058,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4436] = 27, - ACTIONS(737), 1, - anon_sym_LPAREN, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(987), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1025), 1, - anon_sym_RBRACK, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(999), 1, + anon_sym_RBRACK, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1757), 1, sym_expression, - STATE(2079), 1, + STATE(2003), 1, sym_type, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32339,7 +32129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32357,70 +32147,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4552] = 27, - ACTIONS(737), 1, - anon_sym_LPAREN, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(987), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1033), 1, + ACTIONS(1001), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1757), 1, sym_expression, - STATE(2079), 1, + STATE(2003), 1, sym_type, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32428,7 +32218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32446,70 +32236,72 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4668] = 27, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(853), 1, + anon_sym_yield, + ACTIONS(1003), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(1005), 1, + anon_sym_LPAREN, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1013), 1, + anon_sym_LBRACK, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1019), 1, anon_sym_await, - ACTIONS(1035), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(888), 1, sym_primary_expression, - STATE(1110), 1, + STATE(961), 1, sym_string, - STATE(1451), 1, + STATE(1191), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1734), 1, sym_expression, - STATE(2079), 1, - sym_type, - STATE(2786), 1, + STATE(2533), 1, + sym_pattern, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(1011), 2, + anon_sym_match, + anon_sym_type, + STATE(1193), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1009), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(2058), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32517,11 +32309,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1251), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32535,70 +32325,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4784] = 27, - ACTIONS(737), 1, - anon_sym_LPAREN, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(987), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1037), 1, + ACTIONS(1021), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1757), 1, sym_expression, - STATE(2079), 1, + STATE(2003), 1, sym_type, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32606,7 +32396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32624,70 +32414,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4900] = 27, - ACTIONS(737), 1, - anon_sym_LPAREN, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(987), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1039), 1, + ACTIONS(1023), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1757), 1, sym_expression, - STATE(2079), 1, + STATE(2003), 1, sym_type, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32695,7 +32485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32713,70 +32503,72 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5016] = 27, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(853), 1, + anon_sym_yield, + ACTIONS(1003), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(1005), 1, + anon_sym_LPAREN, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1013), 1, + anon_sym_LBRACK, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1019), 1, anon_sym_await, - ACTIONS(1041), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(888), 1, sym_primary_expression, - STATE(1110), 1, + STATE(961), 1, sym_string, - STATE(1451), 1, + STATE(1191), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1734), 1, sym_expression, - STATE(2079), 1, - sym_type, - STATE(2786), 1, + STATE(2533), 1, + sym_pattern, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(1011), 2, + anon_sym_match, + anon_sym_type, + STATE(1193), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1009), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1998), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32784,11 +32576,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1251), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32802,72 +32592,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5132] = 27, - ACTIONS(702), 1, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(869), 1, - anon_sym_yield, - ACTIONS(997), 1, + ACTIONS(819), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, sym_identifier, - ACTIONS(999), 1, - anon_sym_LPAREN, - ACTIONS(1001), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1007), 1, - anon_sym_LBRACK, - ACTIONS(1009), 1, + ACTIONS(987), 1, + anon_sym_match, + ACTIONS(989), 1, + anon_sym_type, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1013), 1, + ACTIONS(997), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1025), 1, + anon_sym_RBRACK, + STATE(972), 1, sym_primary_expression, - STATE(983), 1, + STATE(1098), 1, sym_string, - STATE(1153), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1757), 1, sym_expression, - STATE(2559), 1, - sym_pattern, - STATE(2781), 1, + STATE(2003), 1, + sym_type, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1005), 2, - anon_sym_match, - anon_sym_type, - STATE(1154), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(700), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1003), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2034), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1760), 7, + STATE(2005), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32875,9 +32663,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 14, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32891,70 +32681,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5248] = 27, - ACTIONS(737), 1, - anon_sym_LPAREN, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(987), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1043), 1, + ACTIONS(1027), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1757), 1, sym_expression, - STATE(2079), 1, + STATE(2003), 1, sym_type, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32962,7 +32752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32980,70 +32770,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5364] = 27, - ACTIONS(737), 1, - anon_sym_LPAREN, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(987), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1045), 1, + ACTIONS(1029), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1757), 1, sym_expression, - STATE(2079), 1, + STATE(2003), 1, sym_type, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33051,7 +32841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33069,68 +32859,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5480] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(987), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1757), 1, sym_expression, - STATE(2011), 1, + STATE(1911), 1, sym_type, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33138,7 +32928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33156,68 +32946,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5593] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(345), 1, - anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(391), 1, + anon_sym_match, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1031), 1, + sym_identifier, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, + ACTIONS(1035), 1, + anon_sym_STAR_STAR, + ACTIONS(1037), 1, + anon_sym_type, + STATE(853), 1, sym_primary_expression, - STATE(1025), 1, + STATE(953), 1, sym_string, - STATE(1325), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1731), 1, sym_expression, - STATE(2477), 1, + STATE(1996), 1, sym_type, - STATE(2678), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(387), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(1968), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33225,7 +33015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33243,68 +33033,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5706] = 26, - 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(399), 1, - anon_sym_match, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(1039), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1041), 1, anon_sym_STAR, - ACTIONS(1055), 1, + ACTIONS(1045), 1, + anon_sym_match, + ACTIONS(1047), 1, anon_sym_STAR_STAR, - ACTIONS(1057), 1, + ACTIONS(1049), 1, anon_sym_type, - STATE(870), 1, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1053), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_await, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(985), 1, sym_string, - STATE(1135), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1733), 1, sym_expression, - STATE(1920), 1, + STATE(1980), 1, sym_type, - STATE(2672), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1952), 5, + STATE(1899), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1679), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33312,7 +33102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33329,69 +33119,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5819] = 26, - ACTIONS(67), 1, + [5819] = 27, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(399), 1, - anon_sym_match, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1057), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_RPAREN, + ACTIONS(1063), 1, + anon_sym_COMMA, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1055), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1057), 1, - anon_sym_type, - STATE(870), 1, + ACTIONS(1073), 1, + anon_sym_await, + STATE(956), 1, sym_primary_expression, - STATE(969), 1, + STATE(977), 1, sym_string, - STATE(1135), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1688), 1, sym_expression, - STATE(1922), 1, - sym_type, - STATE(2672), 1, + STATE(2352), 1, + sym_parenthesized_list_splat, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(1069), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2351), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1952), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1679), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33399,7 +33190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33416,71 +33207,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5932] = 28, - ACTIONS(769), 1, + [5934] = 26, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1039), 1, + sym_identifier, + ACTIONS(1041), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1045), 1, + anon_sym_match, + ACTIONS(1047), 1, + anon_sym_STAR_STAR, + ACTIONS(1049), 1, + anon_sym_type, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_RPAREN, - ACTIONS(1069), 1, + ACTIONS(1055), 1, anon_sym_await, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1733), 1, sym_expression, - STATE(2326), 1, - sym_with_item, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(1981), 1, + sym_type, + STATE(2639), 1, sym__named_expression_lhs, - STATE(2778), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, - anon_sym_match, - anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1899), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33488,7 +33277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33505,69 +33294,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6049] = 26, - ACTIONS(275), 1, + [6047] = 26, + ACTIONS(267), 1, sym_identifier, - ACTIONS(297), 1, + ACTIONS(289), 1, anon_sym_match, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_type, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(337), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1075), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1763), 1, sym_expression, - STATE(2356), 1, + STATE(2481), 1, sym_type, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2083), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33575,7 +33364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33592,69 +33381,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6162] = 26, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1071), 1, + [6160] = 26, + ACTIONS(267), 1, sym_identifier, - ACTIONS(1073), 1, - anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(289), 1, anon_sym_match, - ACTIONS(1079), 1, - anon_sym_STAR_STAR, - ACTIONS(1081), 1, + ACTIONS(294), 1, anon_sym_type, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(318), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(337), 1, + anon_sym_STAR_STAR, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1075), 1, + anon_sym_STAR, + ACTIONS(1077), 1, + anon_sym_not, + STATE(955), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1003), 1, sym_string, - STATE(1316), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1763), 1, sym_expression, STATE(1997), 1, sym_type, - STATE(2630), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, + STATE(2083), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33662,7 +33451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33679,69 +33468,157 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6275] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, + [6273] = 27, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1053), 1, + anon_sym_lambda, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(1081), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_RPAREN, + ACTIONS(1085), 1, + anon_sym_COMMA, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(1093), 1, + anon_sym_await, + STATE(952), 1, + sym_primary_expression, + STATE(985), 1, + sym_string, + STATE(1376), 1, + sym_list_splat_pattern, + STATE(1875), 1, + sym_expression, + STATE(2248), 1, + sym_parenthesized_list_splat, + STATE(2639), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(781), 2, + sym_ellipsis, + sym_float, + ACTIONS(1091), 2, anon_sym_match, - ACTIONS(1023), 1, anon_sym_type, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(777), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1089), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2247), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1721), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1308), 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, + [6388] = 26, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(289), 1, + anon_sym_match, + ACTIONS(294), 1, + anon_sym_type, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(318), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(337), 1, + anon_sym_STAR_STAR, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1075), 1, + anon_sym_STAR, + ACTIONS(1077), 1, + anon_sym_not, + STATE(955), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1763), 1, sym_expression, - STATE(2101), 1, + STATE(2338), 1, sym_type, - STATE(2786), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2083), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33749,7 +33626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33766,69 +33643,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6388] = 26, - ACTIONS(783), 1, + [6501] = 26, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1071), 1, + ACTIONS(819), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(987), 1, anon_sym_match, - ACTIONS(1079), 1, - anon_sym_STAR_STAR, - ACTIONS(1081), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1083), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(997), 1, anon_sym_await, - STATE(967), 1, + STATE(972), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1098), 1, sym_string, - STATE(1316), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1757), 1, sym_expression, - STATE(2104), 1, + STATE(2003), 1, sym_type, - STATE(2630), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33836,7 +33713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33853,70 +33730,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6501] = 27, - ACTIONS(769), 1, + [6614] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1057), 1, sym_identifier, - ACTIONS(1091), 1, - anon_sym_RPAREN, - ACTIONS(1093), 1, - anon_sym_COMMA, - ACTIONS(1095), 1, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(1073), 1, anon_sym_await, - STATE(972), 1, + ACTIONS(1095), 1, + anon_sym_RPAREN, + ACTIONS(1097), 1, + anon_sym_COMMA, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1694), 1, + STATE(1693), 1, sym_expression, - STATE(2265), 1, + STATE(2374), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2264), 3, + STATE(2492), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33924,7 +33801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33941,68 +33818,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6616] = 25, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [6729] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1107), 1, - anon_sym_from, - ACTIONS(1115), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(391), 1, + anon_sym_match, + ACTIONS(402), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + sym_identifier, + ACTIONS(1033), 1, + anon_sym_STAR, + ACTIONS(1035), 1, + anon_sym_STAR_STAR, + ACTIONS(1037), 1, + anon_sym_type, + STATE(853), 1, sym_primary_expression, - STATE(983), 1, + STATE(953), 1, sym_string, - STATE(1249), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1731), 1, sym_expression, - STATE(2049), 1, - sym_expression_list, - STATE(2781), 1, + STATE(1889), 1, + sym_type, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1109), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1760), 7, + STATE(1968), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34010,7 +33888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34027,70 +33905,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6727] = 27, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [6842] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(391), 1, + anon_sym_match, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1035), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, - anon_sym_await, - ACTIONS(1117), 1, - anon_sym_RPAREN, - ACTIONS(1119), 1, - anon_sym_COMMA, - STATE(972), 1, + ACTIONS(1037), 1, + anon_sym_type, + STATE(853), 1, sym_primary_expression, - STATE(1044), 1, + STATE(953), 1, sym_string, - STATE(1390), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1686), 1, + STATE(1731), 1, sym_expression, - STATE(2501), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(1920), 1, + sym_type, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2500), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1968), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34098,7 +33975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34115,70 +33992,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6842] = 27, - ACTIONS(769), 1, + [6955] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1057), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(1073), 1, anon_sym_await, - ACTIONS(1121), 1, + ACTIONS(1083), 1, anon_sym_RPAREN, - ACTIONS(1123), 1, + ACTIONS(1085), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1682), 1, + STATE(1680), 1, sym_expression, - STATE(2313), 1, + STATE(2248), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2312), 3, + STATE(2247), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34186,7 +34063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34203,69 +34080,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6957] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(345), 1, - anon_sym_STAR_STAR, - ACTIONS(672), 1, + [7070] = 26, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(1039), 1, + sym_identifier, + ACTIONS(1041), 1, anon_sym_STAR, + ACTIONS(1045), 1, + anon_sym_match, + ACTIONS(1047), 1, + anon_sym_STAR_STAR, ACTIONS(1049), 1, + anon_sym_type, + ACTIONS(1051), 1, anon_sym_not, - STATE(971), 1, + ACTIONS(1053), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_await, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(985), 1, sym_string, - STATE(1325), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1733), 1, sym_expression, - STATE(2320), 1, + STATE(1962), 1, sym_type, - STATE(2678), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1043), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(1899), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34273,7 +34150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34290,61 +34167,81 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7070] = 22, - ACTIONS(311), 1, + [7183] = 26, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(775), 1, + anon_sym_LBRACK, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_TILDE, - ACTIONS(328), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1125), 1, + ACTIONS(1039), 1, sym_identifier, - ACTIONS(1127), 1, - anon_sym_LPAREN, - ACTIONS(1129), 1, + ACTIONS(1041), 1, anon_sym_STAR, - ACTIONS(1135), 1, - anon_sym_LBRACK, - ACTIONS(1137), 1, + ACTIONS(1045), 1, + anon_sym_match, + ACTIONS(1047), 1, + anon_sym_STAR_STAR, + ACTIONS(1049), 1, + anon_sym_type, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1053), 1, + anon_sym_lambda, + ACTIONS(1055), 1, anon_sym_await, - STATE(1025), 1, + STATE(952), 1, + sym_primary_expression, + STATE(985), 1, sym_string, - STATE(1489), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1625), 1, - sym_primary_expression, - STATE(1640), 1, - sym_pattern, + STATE(1733), 1, + sym_expression, + STATE(2027), 1, + sym_type, + STATE(2639), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(684), 2, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1133), 2, - anon_sym_match, - anon_sym_type, - STATE(1491), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1131), 3, + anon_sym_TILDE, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1899), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1721), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -34357,86 +34254,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(995), 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, - [7175] = 27, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [7296] = 26, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(289), 1, + anon_sym_match, + ACTIONS(294), 1, + anon_sym_type, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(337), 1, + anon_sym_STAR_STAR, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1075), 1, anon_sym_STAR, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1103), 1, - anon_sym_await, - ACTIONS(1139), 1, - anon_sym_RPAREN, - ACTIONS(1141), 1, - anon_sym_COMMA, - STATE(972), 1, + ACTIONS(1077), 1, + anon_sym_not, + STATE(955), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1003), 1, sym_string, - STATE(1390), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1704), 1, + STATE(1763), 1, sym_expression, - STATE(2358), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2239), 1, + sym_type, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(2083), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34444,7 +34324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34461,69 +34341,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7290] = 26, - ACTIONS(67), 1, + [7409] = 27, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(399), 1, - anon_sym_match, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1057), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1055), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1057), 1, - anon_sym_type, - STATE(870), 1, + ACTIONS(1073), 1, + anon_sym_await, + ACTIONS(1099), 1, + anon_sym_RPAREN, + ACTIONS(1101), 1, + anon_sym_COMMA, + STATE(956), 1, sym_primary_expression, - STATE(969), 1, + STATE(977), 1, sym_string, - STATE(1135), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1698), 1, sym_expression, - STATE(1986), 1, - sym_type, - STATE(2672), 1, + STATE(2396), 1, + sym_parenthesized_list_splat, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(1069), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2395), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1952), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1679), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34531,7 +34412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34548,70 +34429,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7403] = 27, - ACTIONS(769), 1, + [7524] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1057), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(1073), 1, anon_sym_await, - ACTIONS(1143), 1, + ACTIONS(1103), 1, anon_sym_RPAREN, - ACTIONS(1145), 1, + ACTIONS(1105), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1710), 1, + STATE(1677), 1, sym_expression, - STATE(2386), 1, + STATE(2479), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2385), 3, + STATE(2471), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34619,7 +34500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34636,69 +34517,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7518] = 26, - ACTIONS(275), 1, + [7639] = 26, + ACTIONS(267), 1, sym_identifier, - ACTIONS(297), 1, + ACTIONS(289), 1, anon_sym_match, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_type, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(337), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1075), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1763), 1, sym_expression, - STATE(2270), 1, + STATE(2320), 1, sym_type, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2083), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34706,7 +34587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34723,81 +34604,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7631] = 26, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [7752] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(308), 1, + anon_sym_TILDE, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1071), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1109), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_STAR, - ACTIONS(1077), 1, - anon_sym_match, - ACTIONS(1079), 1, - anon_sym_STAR_STAR, - ACTIONS(1081), 1, - anon_sym_type, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1117), 1, + anon_sym_LBRACK, + ACTIONS(1119), 1, anon_sym_await, - STATE(967), 1, - sym_primary_expression, - STATE(1034), 1, + STATE(1003), 1, sym_string, - STATE(1316), 1, + STATE(1461), 1, sym_list_splat_pattern, - STATE(1746), 1, - sym_expression, - STATE(1959), 1, - sym_type, - STATE(2630), 1, - sym__named_expression_lhs, + STATE(1612), 1, + sym_primary_expression, + STATE(1628), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(668), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + STATE(1464), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1418), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -34810,69 +34671,86 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7744] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(965), 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, + [7857] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, - anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1057), 1, + sym_identifier, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1065), 1, + anon_sym_STAR, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1073), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(1121), 1, + anon_sym_RPAREN, + ACTIONS(1123), 1, + anon_sym_COMMA, + STATE(956), 1, sym_primary_expression, - STATE(1110), 1, + STATE(977), 1, sym_string, - STATE(1451), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1703), 1, sym_expression, - STATE(1950), 1, - sym_type, - STATE(2786), 1, + STATE(2418), 1, + sym_parenthesized_list_splat, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(1069), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + STATE(2417), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34880,7 +34758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34897,70 +34775,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7857] = 27, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [7972] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(391), 1, + anon_sym_match, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1035), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, - anon_sym_await, - ACTIONS(1147), 1, - anon_sym_RPAREN, - ACTIONS(1149), 1, - anon_sym_COMMA, - STATE(972), 1, + ACTIONS(1037), 1, + anon_sym_type, + STATE(853), 1, sym_primary_expression, - STATE(1044), 1, + STATE(953), 1, sym_string, - STATE(1390), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1731), 1, sym_expression, - STATE(2413), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(1921), 1, + sym_type, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2412), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1968), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34968,7 +34845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34985,69 +34862,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7972] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [8085] = 28, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(345), 1, - anon_sym_STAR_STAR, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(879), 1, anon_sym_not, - STATE(971), 1, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1127), 1, + anon_sym_RPAREN, + ACTIONS(1133), 1, + anon_sym_await, + STATE(956), 1, sym_primary_expression, - STATE(1025), 1, + STATE(977), 1, sym_string, - STATE(1325), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1668), 1, sym_expression, - STATE(2397), 1, - sym_type, - STATE(2678), 1, + STATE(2366), 1, + sym_with_item, + STATE(2373), 1, + sym_yield, + STATE(2653), 1, + sym__collection_elements, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1131), 2, + anon_sym_match, + anon_sym_type, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1129), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1738), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35055,7 +34934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35072,69 +34951,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8085] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [8202] = 26, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(819), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(981), 1, + sym_identifier, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(987), 1, + anon_sym_match, + ACTIONS(989), 1, + anon_sym_type, + ACTIONS(993), 1, anon_sym_not, - STATE(971), 1, + ACTIONS(995), 1, + anon_sym_lambda, + ACTIONS(997), 1, + anon_sym_await, + STATE(972), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1098), 1, sym_string, - STATE(1325), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1757), 1, sym_expression, - STATE(2109), 1, + STATE(2025), 1, sym_type, - STATE(2678), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(985), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35142,7 +35021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35159,70 +35038,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8198] = 27, - ACTIONS(769), 1, + [8315] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1057), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(1073), 1, anon_sym_await, - ACTIONS(1151), 1, + ACTIONS(1135), 1, anon_sym_RPAREN, - ACTIONS(1153), 1, + ACTIONS(1137), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1684), 1, sym_expression, - STATE(2439), 1, + STATE(2302), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2438), 3, + STATE(2301), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35230,7 +35109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35247,69 +35126,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8313] = 26, - 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(399), 1, - anon_sym_match, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + [8430] = 26, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(757), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(819), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1057), 1, + ACTIONS(987), 1, + anon_sym_match, + ACTIONS(989), 1, anon_sym_type, - STATE(870), 1, + ACTIONS(993), 1, + anon_sym_not, + ACTIONS(995), 1, + anon_sym_lambda, + ACTIONS(997), 1, + anon_sym_await, + STATE(972), 1, sym_primary_expression, - STATE(969), 1, + STATE(1098), 1, sym_string, - STATE(1135), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1757), 1, sym_expression, - STATE(2100), 1, + STATE(2026), 1, sym_type, - STATE(2672), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1952), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1679), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35317,7 +35196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35334,157 +35213,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8426] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(345), 1, - anon_sym_STAR_STAR, - ACTIONS(672), 1, + [8543] = 25, + ACTIONS(674), 1, anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1781), 1, - sym_expression, - STATE(2083), 1, - sym_type, - STATE(2678), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(2098), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 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, - [8539] = 27, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1091), 1, - anon_sym_RPAREN, - ACTIONS(1093), 1, - anon_sym_COMMA, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1141), 1, + anon_sym_from, + ACTIONS(1149), 1, anon_sym_await, - STATE(967), 1, + STATE(888), 1, sym_primary_expression, - STATE(1034), 1, + STATE(961), 1, sym_string, - STATE(1316), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1735), 1, sym_expression, - STATE(2265), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2063), 1, + sym_expression_list, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2264), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + ACTIONS(1143), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35492,7 +35282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35510,68 +35300,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [8654] = 26, - ACTIONS(783), 1, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1071), 1, + ACTIONS(819), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(987), 1, anon_sym_match, - ACTIONS(1079), 1, - anon_sym_STAR_STAR, - ACTIONS(1081), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1083), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(997), 1, anon_sym_await, - STATE(967), 1, + STATE(972), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1098), 1, sym_string, - STATE(1316), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1757), 1, sym_expression, - STATE(1989), 1, + STATE(1956), 1, sym_type, - STATE(2630), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35579,7 +35369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35596,70 +35386,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8767] = 27, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [8767] = 26, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(289), 1, + anon_sym_match, + ACTIONS(294), 1, + anon_sym_type, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(337), 1, + anon_sym_STAR_STAR, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1075), 1, anon_sym_STAR, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1103), 1, - anon_sym_await, - ACTIONS(1167), 1, - anon_sym_RPAREN, - ACTIONS(1169), 1, - anon_sym_COMMA, - STATE(972), 1, + ACTIONS(1077), 1, + anon_sym_not, + STATE(955), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1003), 1, sym_string, - STATE(1390), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1763), 1, sym_expression, - STATE(2315), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(1995), 1, + sym_type, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2309), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(2083), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35667,7 +35456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35684,69 +35473,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8882] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, + [8880] = 26, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(987), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1757), 1, sym_expression, - STATE(1943), 1, + STATE(1881), 1, sym_type, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35754,7 +35543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35771,69 +35560,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8995] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, + [8993] = 26, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(981), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(983), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(987), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1757), 1, sym_expression, - STATE(1998), 1, + STATE(1950), 1, sym_type, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2005), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35841,7 +35630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35858,69 +35647,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9108] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, + [9106] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, - anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1057), 1, + sym_identifier, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1065), 1, + anon_sym_STAR, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1073), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(1151), 1, + anon_sym_RPAREN, + ACTIONS(1153), 1, + anon_sym_COMMA, + STATE(956), 1, sym_primary_expression, - STATE(1110), 1, + STATE(977), 1, sym_string, - STATE(1451), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1674), 1, sym_expression, - STATE(1911), 1, - sym_type, - STATE(2786), 1, + STATE(2285), 1, + sym_parenthesized_list_splat, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(1069), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + STATE(2284), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35928,7 +35718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35945,61 +35735,81 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9221] = 22, - ACTIONS(311), 1, + [9221] = 26, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(289), 1, + anon_sym_match, + ACTIONS(294), 1, + anon_sym_type, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_TILDE, - ACTIONS(328), 1, + ACTIONS(310), 1, + anon_sym_lambda, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1127), 1, + ACTIONS(337), 1, + anon_sym_STAR_STAR, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(1129), 1, - anon_sym_STAR, - ACTIONS(1135), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1137), 1, - anon_sym_await, - STATE(1025), 1, + ACTIONS(1075), 1, + anon_sym_STAR, + ACTIONS(1077), 1, + anon_sym_not, + STATE(955), 1, + sym_primary_expression, + STATE(1003), 1, sym_string, - STATE(1489), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1625), 1, - sym_primary_expression, - STATE(1640), 1, - sym_pattern, + STATE(1763), 1, + sym_expression, + STATE(2453), 1, + sym_type, + STATE(2772), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(684), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1133), 2, - anon_sym_match, - anon_sym_type, - STATE(1491), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1131), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(2083), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1737), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -36012,85 +35822,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(981), 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, - [9326] = 26, - ACTIONS(275), 1, + [9334] = 26, + ACTIONS(267), 1, sym_identifier, - ACTIONS(297), 1, + ACTIONS(289), 1, anon_sym_match, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_type, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(337), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1075), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1763), 1, sym_expression, - STATE(2474), 1, + STATE(2454), 1, sym_type, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2083), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36098,7 +35892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36115,69 +35909,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9439] = 26, - ACTIONS(275), 1, + [9447] = 26, + ACTIONS(267), 1, sym_identifier, - ACTIONS(297), 1, + ACTIONS(289), 1, anon_sym_match, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_type, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(337), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1075), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1763), 1, sym_expression, - STATE(2253), 1, + STATE(2455), 1, sym_type, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2083), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36185,7 +35979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36202,69 +35996,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9552] = 26, - ACTIONS(275), 1, + [9560] = 26, + ACTIONS(267), 1, sym_identifier, - ACTIONS(297), 1, + ACTIONS(289), 1, anon_sym_match, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_type, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(337), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1075), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1763), 1, sym_expression, - STATE(2476), 1, + STATE(2456), 1, sym_type, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2083), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36272,7 +36066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36289,81 +36083,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9665] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [9673] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(308), 1, + anon_sym_TILDE, + ACTIONS(320), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(1109), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1117), 1, + anon_sym_LBRACK, + ACTIONS(1119), 1, anon_sym_await, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1461), 1, sym_list_splat_pattern, - STATE(1767), 1, - sym_expression, - STATE(2079), 1, - sym_type, - STATE(2786), 1, - sym__named_expression_lhs, + STATE(1612), 1, + sym_primary_expression, + STATE(1628), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(668), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + STATE(1464), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -36376,68 +36150,84 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, + ACTIONS(979), 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, [9778] = 26, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1173), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1081), 1, + anon_sym_LPAREN, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, + anon_sym_await, + ACTIONS(1155), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1200), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1886), 1, sym_expression, - STATE(2618), 1, - sym__collection_elements, - STATE(2649), 1, + STATE(2532), 1, + sym_parenthesized_list_splat, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2518), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36445,7 +36235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36462,70 +36252,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9890] = 28, - ACTIONS(769), 1, + [9890] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(883), 1, anon_sym_yield, ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, - anon_sym_await, - ACTIONS(1175), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(1133), 1, + anon_sym_await, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1679), 1, sym_expression, - STATE(2430), 1, + STATE(2373), 1, sym_yield, - STATE(2488), 1, - sym_list_splat, - STATE(2489), 1, - sym_parenthesized_list_splat, - STATE(2615), 1, + STATE(2653), 1, sym__collection_elements, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36533,7 +36322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36550,68 +36339,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10006] = 26, - ACTIONS(791), 1, + [10004] = 26, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(811), 1, + anon_sym_LPAREN, + ACTIONS(823), 1, + anon_sym_RBRACK, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(829), 1, + anon_sym_yield, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1177), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(1157), 1, + sym_identifier, + STATE(919), 1, sym_primary_expression, - STATE(1034), 1, + STATE(970), 1, sym_string, - STATE(1316), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1709), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2626), 1, sym__named_expression_lhs, + STATE(2725), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2485), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36619,7 +36408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36636,68 +36425,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10118] = 26, - ACTIONS(813), 1, + [10116] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1179), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1133), 1, + anon_sym_await, + ACTIONS(1159), 1, + anon_sym_RPAREN, + STATE(956), 1, sym_primary_expression, STATE(977), 1, sym_string, - STATE(1200), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1727), 1, + STATE(1696), 1, sym_expression, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2667), 1, + STATE(2389), 1, + sym_yield, + STATE(2668), 1, sym__collection_elements, + STATE(2712), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36705,7 +36495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36722,70 +36512,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10230] = 28, - ACTIONS(769), 1, + [10230] = 26, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(811), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1181), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1161), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(1044), 1, + STATE(970), 1, sym_string, - STATE(1390), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1714), 1, sym_expression, - STATE(2304), 1, - sym_yield, - STATE(2488), 1, - sym_list_splat, - STATE(2489), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2626), 1, sym__named_expression_lhs, - STATE(2691), 1, + STATE(2663), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2485), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36793,7 +36581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36810,68 +36598,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10346] = 26, - ACTIONS(791), 1, + [10342] = 28, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1059), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1163), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1719), 1, sym_expression, - STATE(2550), 1, + STATE(2246), 1, + sym_list_splat, + STATE(2249), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2292), 1, + sym_yield, + STATE(2656), 1, + sym__collection_elements, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36879,7 +36669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36896,68 +36686,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10458] = 26, - ACTIONS(791), 1, + [10458] = 28, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1059), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1185), 1, + ACTIONS(1165), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1687), 1, sym_expression, - STATE(2550), 1, + STATE(2243), 1, + sym_list_splat, + STATE(2244), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2343), 1, + sym_yield, + STATE(2657), 1, + sym__collection_elements, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36965,7 +36757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36982,68 +36774,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10570] = 26, - ACTIONS(791), 1, + [10574] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1187), 1, + ACTIONS(1167), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37051,7 +36843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37068,68 +36860,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10682] = 26, - ACTIONS(791), 1, + [10686] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1169), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37137,7 +36929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37154,68 +36946,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10794] = 26, - ACTIONS(791), 1, + [10798] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1191), 1, + ACTIONS(1171), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37223,7 +37015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37240,68 +37032,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10906] = 26, - ACTIONS(791), 1, + [10910] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1193), 1, + ACTIONS(1173), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37309,7 +37101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37326,69 +37118,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11018] = 27, - ACTIONS(769), 1, + [11022] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1175), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1886), 1, sym_expression, - STATE(2304), 1, - sym_yield, - STATE(2684), 1, + STATE(2532), 1, + sym_parenthesized_list_splat, + STATE(2639), 1, sym__named_expression_lhs, - STATE(2691), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2518), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37396,7 +37187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37413,68 +37204,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11132] = 26, - ACTIONS(813), 1, + [11134] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1195), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1081), 1, + anon_sym_LPAREN, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, + anon_sym_await, + ACTIONS(1177), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1200), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1886), 1, sym_expression, - STATE(2649), 1, + STATE(2532), 1, + sym_parenthesized_list_splat, + STATE(2639), 1, sym__named_expression_lhs, - STATE(2724), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2518), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37482,7 +37273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37499,70 +37290,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11244] = 28, - ACTIONS(769), 1, + [11246] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(883), 1, anon_sym_yield, ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1179), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1672), 1, sym_expression, - STATE(2258), 1, - sym_list_splat, - STATE(2259), 1, - sym_parenthesized_list_splat, - STATE(2376), 1, + STATE(2377), 1, sym_yield, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2790), 1, + STATE(2616), 1, sym__collection_elements, + STATE(2712), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37570,7 +37360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37588,67 +37378,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [11360] = 26, - ACTIONS(791), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(811), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(829), 1, + anon_sym_yield, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1199), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1181), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(1034), 1, + STATE(970), 1, sym_string, - STATE(1316), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1716), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2626), 1, sym__named_expression_lhs, + STATE(2672), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2485), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37656,7 +37446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37673,68 +37463,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11472] = 26, - ACTIONS(791), 1, + [11472] = 28, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1059), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1201), 1, + ACTIONS(1159), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1696), 1, sym_expression, - STATE(2550), 1, + STATE(2389), 1, + sym_yield, + STATE(2457), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2465), 1, + sym_list_splat, + STATE(2668), 1, + sym__collection_elements, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37742,7 +37534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37759,68 +37551,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11584] = 26, - ACTIONS(791), 1, + [11588] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1203), 1, + ACTIONS(1183), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37828,7 +37620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37845,68 +37637,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11696] = 26, - ACTIONS(791), 1, + [11700] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1205), 1, + ACTIONS(1185), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37914,7 +37706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37931,68 +37723,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11808] = 26, - ACTIONS(791), 1, + [11812] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1207), 1, + ACTIONS(1187), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38000,7 +37792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38017,68 +37809,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11920] = 26, - ACTIONS(791), 1, + [11924] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1209), 1, + ACTIONS(1189), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38086,7 +37878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38103,68 +37895,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12032] = 26, - ACTIONS(791), 1, + [12036] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1059), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1211), 1, + ACTIONS(1191), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1702), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2412), 1, + sym_yield, + STATE(2599), 1, + sym__collection_elements, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38172,7 +37965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38189,68 +37982,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12144] = 26, - ACTIONS(813), 1, + [12150] = 26, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(811), 1, anon_sym_LPAREN, - ACTIONS(839), 1, - anon_sym_RBRACK, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(891), 1, anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1157), 1, sym_identifier, - STATE(928), 1, + ACTIONS(1193), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1200), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1706), 1, sym_expression, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2685), 1, + STATE(2612), 1, sym__collection_elements, + STATE(2626), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2485), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38258,7 +38051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38275,69 +38068,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12256] = 27, - ACTIONS(769), 1, + [12262] = 28, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(883), 1, anon_sym_yield, ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1191), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1702), 1, sym_expression, - STATE(2376), 1, + STATE(2246), 1, + sym_list_splat, + STATE(2249), 1, + sym_parenthesized_list_splat, + STATE(2412), 1, sym_yield, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2790), 1, + STATE(2599), 1, sym__collection_elements, + STATE(2712), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38345,7 +38139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38362,69 +38156,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12370] = 27, - ACTIONS(769), 1, + [12378] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_RPAREN, - ACTIONS(1069), 1, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, anon_sym_await, - STATE(972), 1, + ACTIONS(1195), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1886), 1, sym_expression, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(2532), 1, + sym_parenthesized_list_splat, + STATE(2639), 1, sym__named_expression_lhs, - STATE(2778), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2518), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38432,7 +38225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38449,68 +38242,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12484] = 26, - ACTIONS(813), 1, + [12490] = 28, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1213), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1133), 1, + anon_sym_await, + ACTIONS(1179), 1, + anon_sym_RPAREN, + STATE(956), 1, sym_primary_expression, STATE(977), 1, sym_string, - STATE(1200), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1672), 1, sym_expression, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2723), 1, + STATE(2377), 1, + sym_yield, + STATE(2457), 1, + sym_parenthesized_list_splat, + STATE(2465), 1, + sym_list_splat, + STATE(2616), 1, sym__collection_elements, + STATE(2712), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38518,7 +38313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38535,68 +38330,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12596] = 26, - ACTIONS(791), 1, + [12606] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1215), 1, + ACTIONS(1197), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38604,7 +38399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38621,68 +38416,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12708] = 26, - ACTIONS(791), 1, + [12718] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1217), 1, + ACTIONS(1199), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38690,7 +38485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38707,68 +38502,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12820] = 26, - ACTIONS(791), 1, + [12830] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1219), 1, + ACTIONS(1201), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38776,7 +38571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38793,68 +38588,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12932] = 26, - ACTIONS(791), 1, + [12942] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1221), 1, + ACTIONS(1203), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38862,7 +38657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38879,68 +38674,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13044] = 26, - ACTIONS(791), 1, + [13054] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1223), 1, + ACTIONS(1205), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38948,7 +38743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38965,68 +38760,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13156] = 26, - ACTIONS(791), 1, + [13166] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1225), 1, + ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39034,7 +38829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39051,68 +38846,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13268] = 26, - ACTIONS(791), 1, + [13278] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1059), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1227), 1, + ACTIONS(1163), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1719), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2292), 1, + sym_yield, + STATE(2656), 1, + sym__collection_elements, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39120,7 +38916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39137,69 +38933,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13380] = 27, - ACTIONS(769), 1, + [13392] = 26, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(811), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1229), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1209), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(1044), 1, + STATE(970), 1, sym_string, - STATE(1390), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1712), 1, sym_expression, - STATE(2348), 1, - sym_yield, - STATE(2658), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2626), 1, sym__named_expression_lhs, + STATE(2706), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2485), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39207,7 +39002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39224,68 +39019,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13494] = 26, - ACTIONS(813), 1, + [13504] = 28, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1231), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1133), 1, + anon_sym_await, + ACTIONS(1211), 1, + anon_sym_RPAREN, + STATE(956), 1, sym_primary_expression, STATE(977), 1, sym_string, - STATE(1200), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1692), 1, sym_expression, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2799), 1, + STATE(2243), 1, + sym_list_splat, + STATE(2244), 1, + sym_parenthesized_list_splat, + STATE(2368), 1, + sym_yield, + STATE(2631), 1, sym__collection_elements, + STATE(2712), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39293,7 +39090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39310,69 +39107,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13606] = 27, - ACTIONS(769), 1, + [13620] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1233), 1, + ACTIONS(1213), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1886), 1, sym_expression, - STATE(2428), 1, - sym_yield, - STATE(2659), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2532), 1, + sym_parenthesized_list_splat, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2518), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39380,7 +39176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39397,68 +39193,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13720] = 26, - ACTIONS(813), 1, + [13732] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1235), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1081), 1, + anon_sym_LPAREN, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, + anon_sym_await, + ACTIONS(1215), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1200), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1886), 1, sym_expression, - STATE(2649), 1, + STATE(2532), 1, + sym_parenthesized_list_splat, + STATE(2639), 1, sym__named_expression_lhs, - STATE(2761), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2518), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39466,7 +39262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39483,70 +39279,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13832] = 28, - ACTIONS(769), 1, + [13844] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1237), 1, + ACTIONS(1217), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1886), 1, sym_expression, - STATE(2269), 1, - sym_list_splat, - STATE(2271), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2470), 1, - sym_yield, - STATE(2684), 1, + STATE(2639), 1, sym__named_expression_lhs, - STATE(2704), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2518), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39554,7 +39348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39571,69 +39365,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13948] = 27, - ACTIONS(769), 1, + [13956] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1237), 1, + ACTIONS(1219), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1886), 1, sym_expression, - STATE(2470), 1, - sym_yield, - STATE(2684), 1, + STATE(2532), 1, + sym_parenthesized_list_splat, + STATE(2639), 1, sym__named_expression_lhs, - STATE(2704), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2518), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39641,7 +39434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39658,68 +39451,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14062] = 26, - ACTIONS(791), 1, + [14068] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1239), 1, + ACTIONS(1221), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39727,7 +39520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39744,68 +39537,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14174] = 26, - ACTIONS(791), 1, + [14180] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1059), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1211), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1692), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2368), 1, + sym_yield, + STATE(2631), 1, + sym__collection_elements, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39813,7 +39607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39830,68 +39624,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14286] = 26, - ACTIONS(791), 1, + [14294] = 26, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(811), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(829), 1, + anon_sym_yield, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1243), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1223), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(1034), 1, + STATE(970), 1, sym_string, - STATE(1316), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1717), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2602), 1, + sym__collection_elements, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2485), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39899,7 +39693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39916,68 +39710,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14398] = 26, - ACTIONS(791), 1, + [14406] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1225), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39985,7 +39779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40002,68 +39796,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14510] = 26, - ACTIONS(813), 1, + [14518] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1247), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1081), 1, + anon_sym_LPAREN, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, + anon_sym_await, + ACTIONS(1227), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1200), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1886), 1, sym_expression, - STATE(2647), 1, - sym__collection_elements, - STATE(2649), 1, + STATE(2532), 1, + sym_parenthesized_list_splat, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2518), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40071,7 +39865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40088,70 +39882,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14622] = 28, - ACTIONS(769), 1, + [14630] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1229), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1886), 1, sym_expression, - STATE(2269), 1, - sym_list_splat, - STATE(2271), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2404), 1, - sym_yield, - STATE(2643), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2518), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40159,7 +39951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40176,70 +39968,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14738] = 28, - ACTIONS(769), 1, + [14742] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1229), 1, + ACTIONS(1231), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1886), 1, sym_expression, - STATE(2258), 1, - sym_list_splat, - STATE(2259), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2348), 1, - sym_yield, - STATE(2658), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2518), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40247,7 +40037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40264,68 +40054,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14854] = 26, - ACTIONS(791), 1, + [14854] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1059), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1165), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1687), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2343), 1, + sym_yield, + STATE(2657), 1, + sym__collection_elements, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40333,7 +40124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40350,68 +40141,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14966] = 26, - ACTIONS(791), 1, + [14968] = 26, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(811), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(829), 1, + anon_sym_yield, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1253), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1233), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(1034), 1, + STATE(970), 1, sym_string, - STATE(1316), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1715), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2626), 1, sym__named_expression_lhs, + STATE(2734), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2485), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40419,7 +40210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40436,69 +40227,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15078] = 27, - ACTIONS(769), 1, + [15080] = 26, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1235), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1886), 1, sym_expression, - STATE(2404), 1, - sym_yield, - STATE(2643), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2532), 1, + sym_parenthesized_list_splat, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2518), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40506,7 +40296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40524,67 +40314,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15192] = 26, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1255), 1, + ACTIONS(1237), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40592,7 +40382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40610,67 +40400,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15304] = 26, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1239), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40678,7 +40468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40696,67 +40486,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15416] = 26, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1259), 1, + ACTIONS(1241), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40764,7 +40554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40781,68 +40571,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15528] = 26, - ACTIONS(791), 1, + [15528] = 27, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1059), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1261), 1, + ACTIONS(1243), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1699), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2407), 1, + sym_yield, + STATE(2712), 1, sym__named_expression_lhs, + STATE(2766), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2460), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40850,7 +40641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40867,69 +40658,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15640] = 27, - ACTIONS(769), 1, + [15642] = 26, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(811), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1175), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(1044), 1, + STATE(970), 1, sym_string, - STATE(1390), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1669), 1, sym_expression, - STATE(2430), 1, - sym_yield, - STATE(2615), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2626), 1, sym__named_expression_lhs, + STATE(2750), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2485), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40937,7 +40727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40955,67 +40745,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15754] = 26, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1247), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1886), 1, sym_expression, - STATE(2550), 1, + STATE(2532), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2518), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41023,7 +40813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41040,66 +40830,144 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15866] = 25, - ACTIONS(805), 1, + [15866] = 19, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(660), 1, + anon_sym_STAR, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(670), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1105), 1, + sym_primary_expression, + STATE(1300), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(664), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(662), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(316), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 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(1392), 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, + [15963] = 25, + ACTIONS(789), 1, + anon_sym_LPAREN, + ACTIONS(797), 1, + anon_sym_LBRACK, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1269), 1, + ACTIONS(1253), 1, anon_sym_RBRACK, - ACTIONS(1271), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1200), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1795), 1, sym_expression, - STATE(2649), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(815), 2, anon_sym_print, anon_sym_exec, - ACTIONS(833), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, + STATE(2100), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, + ACTIONS(1251), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41107,7 +40975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41124,66 +40992,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15975] = 25, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, + [16072] = 25, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(853), 1, + anon_sym_yield, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1017), 1, + anon_sym_lambda, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1149), 1, anon_sym_await, - ACTIONS(1269), 1, - anon_sym_RPAREN, - ACTIONS(1273), 1, + ACTIONS(1257), 1, + anon_sym_LPAREN, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - STATE(972), 1, + ACTIONS(1261), 1, + anon_sym_RBRACE, + STATE(888), 1, sym_primary_expression, - STATE(1044), 1, + STATE(961), 1, sym_string, - STATE(1390), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1923), 1, sym_expression, - STATE(2684), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, - anon_sym_if, + ACTIONS(1145), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(757), 4, + anon_sym_exec, + STATE(2508), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41191,7 +41059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41208,66 +41076,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16084] = 25, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, + [16181] = 25, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(853), 1, + anon_sym_yield, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1017), 1, + anon_sym_lambda, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1149), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1257), 1, + anon_sym_LPAREN, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - ACTIONS(1277), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(1263), 1, + anon_sym_RBRACE, + STATE(888), 1, sym_primary_expression, - STATE(1044), 1, + STATE(961), 1, sym_string, - STATE(1390), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1923), 1, sym_expression, - STATE(2684), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, - anon_sym_if, + ACTIONS(1145), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(757), 4, + anon_sym_exec, + STATE(2508), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41275,7 +41143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41292,66 +41160,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16193] = 25, - ACTIONS(791), 1, + [16290] = 25, + ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1083), 1, + ACTIONS(833), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1283), 1, - anon_sym_RPAREN, - ACTIONS(1285), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1269), 1, + anon_sym_RBRACE, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(880), 1, sym_primary_expression, - STATE(1034), 1, + STATE(963), 1, sym_string, - STATE(1316), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(1794), 1, sym_expression, - STATE(2630), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(841), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2045), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, - anon_sym_print, + ACTIONS(1267), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2580), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(781), 4, + anon_sym_for, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41359,7 +41227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41376,66 +41244,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16302] = 25, - ACTIONS(698), 1, + [16399] = 25, + ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(869), 1, - anon_sym_yield, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, - anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(849), 1, + anon_sym_not, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1287), 1, - anon_sym_LPAREN, - ACTIONS(1289), 1, - anon_sym_STAR, - ACTIONS(1291), 1, + ACTIONS(1253), 1, anon_sym_RBRACE, - STATE(927), 1, + ACTIONS(1265), 1, + anon_sym_STAR, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(880), 1, sym_primary_expression, - STATE(983), 1, + STATE(963), 1, sym_string, - STATE(1249), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1794), 1, sym_expression, - STATE(2781), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(841), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + STATE(2045), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, - anon_sym_print, + ACTIONS(1251), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2542), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(688), 4, + anon_sym_for, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41443,7 +41311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41460,66 +41328,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16411] = 25, - ACTIONS(745), 1, + [16508] = 25, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1027), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1283), 1, - anon_sym_RBRACK, - ACTIONS(1293), 1, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, sym_identifier, - ACTIONS(1295), 1, + ACTIONS(1081), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, + ACTIONS(1087), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1093), 1, + anon_sym_await, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1886), 1, sym_expression, - STATE(2786), 1, + STATE(2532), 1, + sym_parenthesized_list_splat, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2584), 3, + STATE(2518), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(735), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41527,7 +41395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41544,64 +41412,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16520] = 23, - ACTIONS(690), 1, + [16617] = 25, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1011), 1, - anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1133), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1273), 1, + anon_sym_RPAREN, + ACTIONS(1275), 1, + anon_sym_STAR, + ACTIONS(1279), 1, + anon_sym_lambda, + STATE(956), 1, sym_primary_expression, - STATE(983), 1, + STATE(977), 1, sym_string, - STATE(1249), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1803), 1, sym_expression, - STATE(2781), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1129), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + STATE(2032), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, - anon_sym_print, + ACTIONS(1277), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(688), 4, + anon_sym_for, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1299), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1760), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41609,7 +41479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41626,66 +41496,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16625] = 25, - ACTIONS(759), 1, + [16726] = 25, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, ACTIONS(1275), 1, + anon_sym_STAR, + ACTIONS(1279), 1, anon_sym_lambda, - ACTIONS(1301), 1, + ACTIONS(1281), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1803), 1, sym_expression, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1129), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, + STATE(2032), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1303), 3, + ACTIONS(1283), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41693,7 +41563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41710,66 +41580,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16734] = 25, - ACTIONS(791), 1, + [16835] = 25, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1133), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(1269), 1, + anon_sym_RPAREN, + ACTIONS(1275), 1, + anon_sym_STAR, + ACTIONS(1279), 1, + anon_sym_lambda, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1803), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1129), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2032), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, - anon_sym_print, + ACTIONS(1267), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + anon_sym_for, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41777,7 +41647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41794,66 +41664,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16843] = 25, - ACTIONS(698), 1, + [16944] = 25, + ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(869), 1, - anon_sym_yield, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, - anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(849), 1, + anon_sym_not, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1283), 1, - anon_sym_RBRACE, - ACTIONS(1287), 1, - anon_sym_LPAREN, - ACTIONS(1289), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(927), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + ACTIONS(1281), 1, + anon_sym_RBRACE, + STATE(880), 1, sym_primary_expression, - STATE(983), 1, + STATE(963), 1, sym_string, - STATE(1249), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1794), 1, sym_expression, - STATE(2781), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(841), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + STATE(2045), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, - anon_sym_print, + ACTIONS(1283), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2542), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(688), 4, + anon_sym_for, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41861,7 +41731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41878,66 +41748,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16952] = 25, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, + [17053] = 25, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(829), 1, + anon_sym_yield, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(995), 1, + anon_sym_lambda, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1263), 1, + anon_sym_RBRACK, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, anon_sym_STAR, - ACTIONS(1309), 1, - anon_sym_RBRACE, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + STATE(972), 1, sym_primary_expression, - STATE(980), 1, + STATE(1098), 1, sym_string, - STATE(1229), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1960), 1, sym_expression, - STATE(2645), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(859), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1307), 3, - anon_sym_if, + ACTIONS(985), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(713), 4, + anon_sym_exec, + STATE(2494), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41945,7 +41815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41962,66 +41832,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17061] = 25, - ACTIONS(791), 1, + [17162] = 23, + ACTIONS(674), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1083), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1281), 1, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(1285), 1, - anon_sym_STAR, - ACTIONS(1291), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1149), 1, + anon_sym_await, + STATE(888), 1, sym_primary_expression, - STATE(1034), 1, + STATE(961), 1, sym_string, - STATE(1316), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(1761), 1, sym_expression, - STATE(2630), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2580), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(781), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + ACTIONS(1291), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42029,7 +41897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42046,66 +41914,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17170] = 25, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, + [17267] = 25, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(1053), 1, + anon_sym_lambda, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(1269), 1, - anon_sym_RBRACE, - ACTIONS(1305), 1, + ACTIONS(1081), 1, + anon_sym_LPAREN, + ACTIONS(1261), 1, + anon_sym_RPAREN, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1295), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + STATE(952), 1, sym_primary_expression, - STATE(980), 1, + STATE(985), 1, sym_string, - STATE(1229), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1910), 1, sym_expression, - STATE(2645), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(859), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, - anon_sym_if, + ACTIONS(1043), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(713), 4, + anon_sym_exec, + STATE(2523), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42113,7 +41981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42130,64 +41998,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17279] = 23, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, + [17376] = 25, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1055), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1081), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, + anon_sym_RPAREN, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1295), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1910), 1, sym_expression, - STATE(2781), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + STATE(2523), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1313), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1760), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42195,7 +42065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42212,66 +42082,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17384] = 25, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + [17485] = 25, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(829), 1, + anon_sym_yield, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(995), 1, + anon_sym_lambda, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1261), 1, + anon_sym_RBRACK, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - ACTIONS(1309), 1, - anon_sym_RBRACK, - STATE(928), 1, + STATE(972), 1, sym_primary_expression, - STATE(977), 1, + STATE(1098), 1, sym_string, - STATE(1200), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1960), 1, sym_expression, - STATE(2649), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(833), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1307), 3, - anon_sym_if, + ACTIONS(985), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(803), 4, + anon_sym_exec, + STATE(2494), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42279,7 +42149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42296,66 +42166,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17493] = 25, - ACTIONS(759), 1, + [17594] = 23, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1017), 1, + anon_sym_lambda, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1149), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - ACTIONS(1309), 1, - anon_sym_RPAREN, - STATE(972), 1, + STATE(888), 1, sym_primary_expression, - STATE(1044), 1, + STATE(961), 1, sym_string, - STATE(1390), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1761), 1, sym_expression, - STATE(2684), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1307), 3, - anon_sym_if, + ACTIONS(1145), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(757), 4, + anon_sym_exec, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + ACTIONS(1297), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42363,7 +42231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42380,66 +42248,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17602] = 25, - ACTIONS(745), 1, + [17699] = 25, + ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1027), 1, + ACTIONS(833), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1291), 1, - anon_sym_RBRACK, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + ACTIONS(1273), 1, + anon_sym_RBRACE, + STATE(880), 1, sym_primary_expression, - STATE(1110), 1, + STATE(963), 1, sym_string, - STATE(1451), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1794), 1, sym_expression, - STATE(2786), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(841), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(2045), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, - anon_sym_print, + ACTIONS(1277), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2584), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(735), 4, + anon_sym_for, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42447,7 +42315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42464,66 +42332,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17711] = 25, - ACTIONS(805), 1, + [17808] = 25, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1255), 1, anon_sym_lambda, - ACTIONS(1277), 1, + ACTIONS(1281), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1200), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1795), 1, sym_expression, - STATE(2649), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(815), 2, anon_sym_print, anon_sym_exec, - ACTIONS(833), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, + STATE(2100), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, + ACTIONS(1283), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42531,7 +42399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42548,66 +42416,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17820] = 25, - ACTIONS(805), 1, + [17917] = 25, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1255), 1, anon_sym_lambda, - ACTIONS(1301), 1, + ACTIONS(1273), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1200), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1795), 1, sym_expression, - STATE(2649), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(815), 2, anon_sym_print, anon_sym_exec, - ACTIONS(833), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, + STATE(2100), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1303), 3, + ACTIONS(1277), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42615,7 +42483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42632,66 +42500,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17929] = 25, - ACTIONS(715), 1, + [18026] = 25, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1277), 1, - anon_sym_RBRACE, - ACTIONS(1305), 1, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1311), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(964), 1, + ACTIONS(1269), 1, + anon_sym_RBRACK, + STATE(919), 1, sym_primary_expression, - STATE(980), 1, + STATE(970), 1, sym_string, - STATE(1229), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1795), 1, sym_expression, - STATE(2645), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, + ACTIONS(815), 2, anon_sym_print, anon_sym_exec, - ACTIONS(859), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, + STATE(2100), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, + ACTIONS(1267), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(713), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42699,85 +42567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 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, - [18038] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, - sym_primary_expression, - STATE(1325), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(678), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(324), 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(1311), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42795,60 +42585,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [18135] = 25, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1301), 1, - anon_sym_RBRACE, - ACTIONS(1305), 1, + ACTIONS(1253), 1, + anon_sym_RPAREN, + ACTIONS(1275), 1, anon_sym_STAR, - ACTIONS(1311), 1, + ACTIONS(1279), 1, anon_sym_lambda, - STATE(964), 1, + STATE(956), 1, sym_primary_expression, - STATE(980), 1, + STATE(977), 1, sym_string, - STATE(1229), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1803), 1, sym_expression, - STATE(2645), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, + ACTIONS(1129), 2, anon_sym_print, anon_sym_exec, - ACTIONS(859), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, + STATE(2032), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1303), 3, + ACTIONS(1251), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(713), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, @@ -42861,7 +42651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42878,64 +42668,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18244] = 24, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [18244] = 25, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, sym_identifier, - ACTIONS(1295), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, + ACTIONS(660), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_STAR_STAR, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1299), 1, + anon_sym_RBRACE, + STATE(955), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(2006), 1, sym_expression, - STATE(2786), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2584), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(735), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42943,7 +42734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42960,65 +42751,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18350] = 25, - ACTIONS(67), 1, + [18352] = 25, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1315), 1, - anon_sym_from, - ACTIONS(1317), 1, + ACTIONS(660), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_STAR_STAR, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1301), 1, + anon_sym_RBRACE, + STATE(955), 1, sym_primary_expression, - STATE(969), 1, + STATE(1003), 1, sym_string, - STATE(1135), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(2006), 1, sym_expression, - STATE(2519), 1, - sym_expression_list, - STATE(2672), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(1109), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43026,7 +42817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43043,65 +42834,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18458] = 25, - ACTIONS(311), 1, + [18460] = 25, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1319), 1, + ACTIONS(1303), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43109,7 +42900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43126,65 +42917,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18566] = 25, - ACTIONS(311), 1, + [18568] = 25, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1321), 1, + ACTIONS(1305), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43192,7 +42983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43209,65 +43000,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18674] = 25, - ACTIONS(311), 1, + [18676] = 24, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(853), 1, + anon_sym_yield, + ACTIONS(1015), 1, + anon_sym_not, + ACTIONS(1017), 1, + anon_sym_lambda, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(1149), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1323), 1, - anon_sym_RBRACE, - STATE(971), 1, + STATE(888), 1, sym_primary_expression, - STATE(1025), 1, + STATE(961), 1, sym_string, - STATE(1325), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1923), 1, sym_expression, - STATE(2678), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1147), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1145), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2508), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43275,7 +43065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43293,64 +43083,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [18782] = 25, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1325), 1, + ACTIONS(1307), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43358,7 +43148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43376,64 +43166,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [18890] = 25, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1327), 1, + ACTIONS(1309), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43441,7 +43231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43459,64 +43249,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [18998] = 25, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1329), 1, + ACTIONS(1311), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43524,7 +43314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43542,64 +43332,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19106] = 25, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1331), 1, + ACTIONS(1313), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43607,7 +43397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43625,64 +43415,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19214] = 25, - ACTIONS(311), 1, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1333), 1, - anon_sym_RBRACE, - STATE(971), 1, + ACTIONS(1317), 1, + anon_sym_from, + ACTIONS(1319), 1, + anon_sym_STAR, + STATE(853), 1, sym_primary_expression, - STATE(1025), 1, + STATE(953), 1, sym_string, - STATE(1325), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1760), 1, sym_expression, - STATE(2678), 1, + STATE(2265), 1, + sym_expression_list, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(391), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1315), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(387), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43690,7 +43480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43708,64 +43498,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19322] = 25, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(1321), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43773,7 +43563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43790,65 +43580,147 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19430] = 25, - ACTIONS(311), 1, + [19430] = 24, + ACTIONS(775), 1, + anon_sym_LBRACK, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1053), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_await, + ACTIONS(1081), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1295), 1, + anon_sym_STAR, + STATE(952), 1, + sym_primary_expression, + STATE(985), 1, + sym_string, + STATE(1376), 1, + sym_list_splat_pattern, + STATE(1910), 1, + sym_expression, + STATE(2639), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(781), 2, + sym_ellipsis, + sym_float, + ACTIONS(1045), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(777), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1043), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2523), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(765), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1721), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1308), 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, + [19536] = 25, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1337), 1, + ACTIONS(1323), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43856,7 +43728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43873,65 +43745,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19538] = 25, - ACTIONS(311), 1, + [19644] = 25, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1339), 1, + ACTIONS(1325), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43939,7 +43811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43956,65 +43828,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19646] = 25, - ACTIONS(67), 1, + [19752] = 25, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(1343), 1, - anon_sym_from, - STATE(870), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_STAR_STAR, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1327), 1, + anon_sym_RBRACE, + STATE(955), 1, sym_primary_expression, - STATE(969), 1, + STATE(1003), 1, sym_string, - STATE(1135), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1770), 1, + STATE(2006), 1, sym_expression, - STATE(2325), 1, - sym_expression_list, - STATE(2672), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(1341), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44022,7 +43894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44039,65 +43911,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19754] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [19860] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - ACTIONS(1345), 1, - anon_sym_from, - ACTIONS(1347), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1329), 1, + anon_sym_from, + STATE(853), 1, sym_primary_expression, - STATE(1110), 1, + STATE(953), 1, sym_string, - STATE(1451), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1847), 1, + STATE(1799), 1, sym_expression, - STATE(2525), 1, + STATE(2548), 1, sym_expression_list, - STATE(2786), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(1109), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(1143), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44105,7 +43977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44122,64 +43994,147 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19862] = 24, - ACTIONS(698), 1, + [19968] = 25, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + anon_sym_lambda, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, + sym_identifier, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_STAR, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(845), 1, + anon_sym_STAR_STAR, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1331), 1, + anon_sym_RBRACE, + STATE(955), 1, + sym_primary_expression, + STATE(1003), 1, + sym_string, + STATE(1300), 1, + sym_list_splat_pattern, + STATE(2006), 1, + sym_expression, + STATE(2772), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(289), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(282), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1737), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1392), 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, + [20076] = 24, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(829), 1, anon_sym_yield, - ACTIONS(1009), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(997), 1, anon_sym_await, + ACTIONS(1285), 1, + sym_identifier, ACTIONS(1287), 1, anon_sym_LPAREN, ACTIONS(1289), 1, anon_sym_STAR, - STATE(927), 1, + STATE(972), 1, sym_primary_expression, - STATE(983), 1, + STATE(1098), 1, sym_string, - STATE(1249), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1960), 1, sym_expression, - STATE(2781), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2542), 3, + STATE(2494), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(688), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44187,7 +44142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44204,65 +44159,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19968] = 25, - ACTIONS(311), 1, + [20182] = 25, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1349), 1, + ACTIONS(1333), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44270,7 +44225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44287,65 +44242,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20076] = 25, - ACTIONS(311), 1, + [20290] = 25, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1351), 1, + ACTIONS(1335), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44353,7 +44308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44370,65 +44325,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20184] = 25, - ACTIONS(783), 1, + [20398] = 25, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(1353), 1, + ACTIONS(1337), 1, anon_sym_from, - ACTIONS(1355), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1863), 1, + STATE(1832), 1, sym_expression, - STATE(2549), 1, + STATE(2522), 1, sym_expression_list, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(1109), 2, + ACTIONS(1143), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44436,7 +44391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44453,65 +44408,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20292] = 25, - ACTIONS(311), 1, + [20506] = 25, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1357), 1, + ACTIONS(1341), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44519,7 +44474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44536,65 +44491,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20400] = 25, - ACTIONS(311), 1, + [20614] = 25, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(993), 1, + anon_sym_not, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1343), 1, + anon_sym_from, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1359), 1, - anon_sym_RBRACE, - STATE(971), 1, + STATE(972), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1098), 1, sym_string, - STATE(1325), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1861), 1, sym_expression, - STATE(2678), 1, + STATE(2554), 1, + sym_expression_list, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(987), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1143), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(985), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44602,7 +44557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44619,65 +44574,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20508] = 25, - ACTIONS(311), 1, + [20722] = 25, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(993), 1, + anon_sym_not, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1361), 1, - anon_sym_RBRACE, - STATE(971), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(1349), 1, + anon_sym_RBRACK, + STATE(972), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1098), 1, sym_string, - STATE(1325), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1850), 1, sym_expression, - STATE(2678), 1, + STATE(2547), 1, + sym_slice, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(987), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(985), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44685,7 +44639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44702,64 +44656,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20616] = 24, - ACTIONS(791), 1, + [20829] = 25, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1083), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1281), 1, - sym_identifier, ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(1351), 1, + anon_sym_RBRACK, + STATE(972), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1098), 1, sym_string, - STATE(1316), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(1850), 1, sym_expression, - STATE(2630), 1, + STATE(2547), 1, + sym_slice, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2580), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(781), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44767,7 +44721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44784,66 +44738,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20722] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [20936] = 25, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(757), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(993), 1, + anon_sym_not, + ACTIONS(995), 1, + anon_sym_lambda, + ACTIONS(997), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1345), 1, + anon_sym_STAR, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(1353), 1, + anon_sym_RBRACK, + STATE(972), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1098), 1, + sym_string, + STATE(1423), 1, sym_list_splat_pattern, + STATE(1850), 1, + sym_expression, + STATE(2547), 1, + sym_slice, + STATE(2595), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(667), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(678), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(743), 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(1311), 16, + STATE(1743), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44860,64 +44820,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20817] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [21043] = 24, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1357), 1, anon_sym_COLON, - ACTIONS(1365), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1878), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1355), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44925,7 +44884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44942,64 +44901,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20924] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [21148] = 24, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1361), 1, anon_sym_COLON, - ACTIONS(1367), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1864), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1359), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45007,7 +44965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45024,64 +44982,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21031] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [21253] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1369), 1, + ACTIONS(1363), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45089,7 +45047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45106,63 +45064,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21138] = 24, - ACTIONS(67), 1, + [21360] = 25, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(1365), 1, + anon_sym_RBRACK, + STATE(972), 1, sym_primary_expression, - STATE(969), 1, + STATE(1098), 1, sym_string, - STATE(1135), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1828), 1, + STATE(1850), 1, sym_expression, - STATE(2591), 1, - sym_expression_list, - STATE(2672), 1, + STATE(2547), 1, + sym_slice, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(1371), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45170,7 +45129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45187,64 +45146,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21243] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [21467] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1373), 1, + ACTIONS(1367), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45252,7 +45211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45269,64 +45228,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21350] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [21574] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1375), 1, + ACTIONS(1369), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45334,7 +45293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45351,64 +45310,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21457] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [21681] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1377), 1, + ACTIONS(1371), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45416,7 +45375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45433,7 +45392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21564] = 24, + [21788] = 24, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -45442,27 +45401,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(402), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1319), 1, anon_sym_STAR, - ACTIONS(1379), 1, + ACTIONS(1373), 1, anon_sym_from, - STATE(870), 1, + STATE(853), 1, sym_primary_expression, - STATE(969), 1, + STATE(953), 1, sym_string, - STATE(1135), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1781), 1, sym_expression, - STATE(2672), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -45470,17 +45429,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, + ACTIONS(1297), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -45489,7 +45448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45497,7 +45456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45514,64 +45473,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21669] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [21893] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1381), 1, + ACTIONS(1375), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45579,7 +45538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45596,64 +45555,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21776] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [22000] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1383), 1, + ACTIONS(1377), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45661,7 +45620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45678,64 +45637,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21883] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [22107] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1385), 1, + ACTIONS(1379), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45743,7 +45702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45760,64 +45719,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21990] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [22214] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1387), 1, + ACTIONS(1381), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45825,7 +45784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45842,64 +45801,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22097] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [22321] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1389), 1, + ACTIONS(1383), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45907,7 +45866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45924,64 +45883,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22204] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [22428] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1391), 1, + ACTIONS(1385), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45989,7 +45948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46006,72 +45965,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22311] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [22535] = 19, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1393), 1, - anon_sym_RBRACK, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(670), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1105), 1, + sym_primary_expression, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1861), 1, - sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(664), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(651), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(662), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 5, sym_integer, + sym_identifier, 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(1462), 16, + ACTIONS(269), 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(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46088,64 +46041,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22418] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [22630] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1395), 1, + ACTIONS(1387), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46153,7 +46106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46170,64 +46123,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22525] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [22737] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1397), 1, + ACTIONS(1389), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46235,7 +46188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46252,64 +46205,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22632] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [22844] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1399), 1, + ACTIONS(1391), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46317,7 +46270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46334,64 +46287,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22739] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [22951] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1401), 1, + ACTIONS(1393), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46399,7 +46352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46416,64 +46369,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22846] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [23058] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1403), 1, + ACTIONS(1395), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46481,7 +46434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46498,64 +46451,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22953] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [23165] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1405), 1, + ACTIONS(1397), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46563,7 +46516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46580,64 +46533,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23060] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [23272] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1407), 1, + ACTIONS(1399), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46645,7 +46598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46662,64 +46615,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23167] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [23379] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1409), 1, + ACTIONS(1401), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46727,7 +46680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46744,64 +46697,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23274] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [23486] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1411), 1, + ACTIONS(1403), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46809,7 +46762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46826,7 +46779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23381] = 24, + [23593] = 24, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -46835,27 +46788,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(402), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1319), 1, anon_sym_STAR, - ACTIONS(1413), 1, - anon_sym_from, - STATE(870), 1, + STATE(853), 1, sym_primary_expression, - STATE(969), 1, + STATE(953), 1, sym_string, - STATE(1135), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1813), 1, sym_expression, - STATE(2672), 1, + STATE(2529), 1, + sym_expression_list, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -46863,17 +46816,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(1313), 2, + ACTIONS(1405), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -46882,7 +46835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46890,7 +46843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46907,64 +46860,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23486] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [23698] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1415), 1, + ACTIONS(1407), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46972,7 +46925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46989,63 +46942,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23593] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [23805] = 24, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(1419), 1, - anon_sym_COLON, - STATE(992), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_STAR_STAR, + ACTIONS(1077), 1, + anon_sym_not, + STATE(955), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1867), 1, + STATE(2006), 1, sym_expression, - STATE(2786), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(1417), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47053,7 +47006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47070,64 +47023,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23698] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [23910] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1421), 1, + ACTIONS(1409), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47135,7 +47088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47152,64 +47105,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23805] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [24017] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1423), 1, + ACTIONS(1411), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47217,7 +47170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47234,144 +47187,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23912] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, + [24124] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1427), 1, + ACTIONS(1347), 1, anon_sym_COLON, - STATE(992), 1, + ACTIONS(1413), 1, + anon_sym_RBRACK, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1878), 1, + STATE(1850), 1, sym_expression, - STATE(2786), 1, + STATE(2547), 1, + sym_slice, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(1425), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 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(1462), 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, - [24017] = 24, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(2057), 1, - sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47379,7 +47252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47396,64 +47269,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24122] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [24231] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1429), 1, + ACTIONS(1415), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47461,7 +47334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47478,64 +47351,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24229] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [24338] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1431), 1, + ACTIONS(1417), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47543,7 +47416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47560,64 +47433,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24336] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, + [24445] = 25, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1433), 1, + ACTIONS(1419), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1850), 1, sym_expression, - STATE(2561), 1, + STATE(2547), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47625,7 +47498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47642,66 +47515,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24443] = 19, - ACTIONS(311), 1, + [24552] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1421), 1, + anon_sym_from, + STATE(853), 1, sym_primary_expression, - STATE(1325), 1, + STATE(953), 1, + sym_string, + STATE(1049), 1, sym_list_splat_pattern, + STATE(1781), 1, + sym_expression, + STATE(2724), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(1291), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(1435), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(324), 5, + ACTIONS(77), 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(1311), 16, + STATE(1659), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47718,72 +47596,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24538] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [24657] = 19, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1437), 1, - anon_sym_RBRACK, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(670), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1105), 1, + sym_primary_expression, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1861), 1, - sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(664), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(662), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(1423), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(316), 5, sym_integer, + sym_identifier, 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(1462), 16, + ACTIONS(269), 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(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47800,64 +47672,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24645] = 25, - ACTIONS(737), 1, + [24752] = 23, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(833), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1265), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1439), 1, - anon_sym_RBRACK, - STATE(992), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(880), 1, sym_primary_expression, - STATE(1110), 1, + STATE(963), 1, sym_string, - STATE(1451), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1794), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(2045), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47865,7 +47734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47882,70 +47751,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24752] = 24, - ACTIONS(311), 1, + [24854] = 19, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1441), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(660), 1, anon_sym_STAR, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(670), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1105), 1, + sym_primary_expression, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1991), 1, - sym_expression, - STATE(2442), 1, - sym_with_item, - STATE(2678), 1, - sym__named_expression_lhs, - STATE(2686), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(312), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(664), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(662), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 16, + ACTIONS(269), 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(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47962,7 +47826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24856] = 23, + [24948] = 23, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -47971,25 +47835,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(402), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(870), 1, + STATE(853), 1, sym_primary_expression, - STATE(969), 1, + STATE(953), 1, sym_string, - STATE(1135), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1781), 1, sym_expression, - STATE(2672), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -47997,17 +47861,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(1445), 2, + ACTIONS(1425), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -48016,7 +47880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48024,7 +47888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48041,61 +47905,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24958] = 23, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [25050] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(992), 1, + STATE(853), 1, sym_primary_expression, - STATE(1110), 1, + STATE(953), 1, sym_string, - STATE(1451), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1939), 1, + STATE(1858), 1, sym_expression, - STATE(2786), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(1417), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(1427), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48103,7 +47967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48120,61 +47984,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25060] = 23, - ACTIONS(783), 1, + [25152] = 23, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1982), 1, + STATE(1961), 1, sym_expression, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, + ACTIONS(1291), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48182,7 +48046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48199,61 +48063,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25162] = 23, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [25254] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(402), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - STATE(972), 1, + STATE(853), 1, sym_primary_expression, - STATE(1044), 1, + STATE(953), 1, sym_string, - STATE(1390), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1858), 1, sym_expression, - STATE(2684), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - STATE(1932), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(1429), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48261,7 +48125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48278,61 +48142,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25264] = 23, - ACTIONS(783), 1, + [25356] = 23, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1982), 1, + STATE(1961), 1, sym_expression, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(1313), 2, + ACTIONS(1297), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48340,7 +48204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48357,55 +48221,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25366] = 19, - ACTIONS(311), 1, + [25458] = 19, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(670), 1, anon_sym_await, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1053), 1, + STATE(1105), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(667), 2, + ACTIONS(651), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(680), 2, + ACTIONS(664), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(662), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(316), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, + ACTIONS(269), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -48415,7 +48279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48432,55 +48296,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25460] = 19, - ACTIONS(311), 1, + [25552] = 19, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(670), 1, anon_sym_await, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1053), 1, + STATE(1105), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(320), 2, + ACTIONS(312), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(664), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(662), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(316), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, + ACTIONS(269), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -48490,7 +48354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48507,61 +48371,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25554] = 23, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [25646] = 24, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(992), 1, + STATE(955), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1919), 1, sym_expression, - STATE(2786), 1, + STATE(2267), 1, + sym_with_item, + STATE(2647), 1, + sym_with_clause, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48569,7 +48434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48586,61 +48451,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25656] = 23, - ACTIONS(737), 1, - anon_sym_LPAREN, + [25750] = 23, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1948), 1, sym_expression, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(1313), 2, + ACTIONS(1291), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48648,7 +48513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48665,62 +48530,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25758] = 24, - ACTIONS(783), 1, + [25852] = 23, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1447), 1, - anon_sym_RPAREN, - STATE(967), 1, + STATE(972), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1098), 1, sym_string, - STATE(1316), 1, + STATE(1423), 1, sym_list_splat_pattern, STATE(1948), 1, sym_expression, - STATE(2551), 1, - sym_with_item, - STATE(2630), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(1297), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48728,7 +48592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48745,70 +48609,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25862] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [25954] = 20, + ACTIONS(296), 1, + anon_sym_in, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(312), 1, + anon_sym_COMMA, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(670), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1105), 1, + sym_primary_expression, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1830), 1, - sym_expression, - STATE(2353), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(664), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(662), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 5, sym_integer, + sym_identifier, 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(1462), 16, + ACTIONS(269), 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(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48825,61 +48685,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25966] = 23, - ACTIONS(737), 1, + [26050] = 24, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1055), 1, anon_sym_await, ACTIONS(1293), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1435), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1906), 1, + STATE(1978), 1, sym_expression, - STATE(2786), 1, + STATE(2545), 1, + sym_with_item, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(1449), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48887,7 +48748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48904,62 +48765,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26068] = 24, - ACTIONS(311), 1, + [26154] = 24, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(682), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1437), 1, + anon_sym_COLON, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1919), 1, sym_expression, - STATE(2442), 1, + STATE(2551), 1, sym_with_item, - STATE(2624), 1, - sym_with_clause, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48967,7 +48828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48984,61 +48845,140 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26172] = 23, - ACTIONS(759), 1, + [26258] = 23, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(995), 1, + anon_sym_lambda, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1345), 1, anon_sym_STAR, + STATE(972), 1, + sym_primary_expression, + STATE(1098), 1, + sym_string, + STATE(1423), 1, + sym_list_splat_pattern, + STATE(1890), 1, + sym_expression, + STATE(2595), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(759), 2, + sym_ellipsis, + sym_float, + ACTIONS(987), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1355), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(755), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(985), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(743), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1743), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1425), 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, + [26360] = 23, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(879), 1, + anon_sym_not, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, + anon_sym_await, ACTIONS(1275), 1, + anon_sym_STAR, + ACTIONS(1279), 1, anon_sym_lambda, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1803), 1, sym_expression, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - STATE(1976), 2, + STATE(1958), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49046,7 +48986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49063,61 +49003,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26274] = 23, - ACTIONS(805), 1, + [26462] = 23, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1200), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1795), 1, sym_expression, - STATE(2649), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - STATE(1955), 2, + STATE(1906), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49125,7 +49065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49142,61 +49082,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26376] = 23, - ACTIONS(67), 1, + [26564] = 23, + ACTIONS(789), 1, + anon_sym_LPAREN, + ACTIONS(797), 1, + anon_sym_LBRACK, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(825), 1, + anon_sym_not, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1255), 1, + anon_sym_lambda, + STATE(919), 1, sym_primary_expression, - STATE(969), 1, + STATE(970), 1, sym_string, - STATE(1135), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1795), 1, sym_expression, - STATE(2672), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - ACTIONS(1451), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(1909), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49204,7 +49144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49221,61 +49161,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26478] = 23, - ACTIONS(67), 1, + [26666] = 24, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(775), 1, + anon_sym_LBRACK, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1439), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(985), 1, sym_string, - STATE(1135), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1978), 1, sym_expression, - STATE(2672), 1, + STATE(2545), 1, + sym_with_item, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(1453), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49283,7 +49224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49300,61 +49241,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26580] = 23, - ACTIONS(805), 1, + [26770] = 23, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1200), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1820), 1, sym_expression, - STATE(2649), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - STATE(1925), 2, + STATE(2099), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49362,7 +49303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49379,62 +49320,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26682] = 24, - ACTIONS(311), 1, + [26872] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1319), 1, anon_sym_STAR, - ACTIONS(1455), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(853), 1, sym_primary_expression, - STATE(1025), 1, + STATE(953), 1, sym_string, - STATE(1325), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1781), 1, sym_expression, - STATE(2565), 1, - sym_with_item, - STATE(2678), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(391), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1441), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(387), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49442,7 +49382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49459,61 +49399,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26786] = 23, - ACTIONS(805), 1, + [26974] = 23, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(995), 1, + anon_sym_lambda, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(928), 1, + STATE(972), 1, sym_primary_expression, - STATE(977), 1, + STATE(1098), 1, sym_string, - STATE(1200), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1813), 1, + STATE(1928), 1, sym_expression, - STATE(2649), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - STATE(2074), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(1443), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49521,7 +49461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49538,61 +49478,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26888] = 23, - ACTIONS(737), 1, + [27076] = 23, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1255), 1, + anon_sym_lambda, + STATE(919), 1, sym_primary_expression, - STATE(1110), 1, + STATE(970), 1, sym_string, - STATE(1451), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1953), 1, + STATE(1783), 1, sym_expression, - STATE(2786), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - ACTIONS(1457), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + STATE(1993), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49600,7 +49540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49617,70 +49557,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26990] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [27178] = 19, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(670), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1105), 1, + sym_primary_expression, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1861), 1, - sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(664), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1423), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(662), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 5, sym_integer, + sym_identifier, 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(1462), 16, + ACTIONS(269), 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(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49697,61 +49632,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27094] = 23, - ACTIONS(759), 1, + [27272] = 23, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, ACTIONS(1275), 1, + anon_sym_STAR, + ACTIONS(1279), 1, anon_sym_lambda, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1796), 1, + STATE(1803), 1, sym_expression, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - STATE(2010), 2, + STATE(1940), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49759,7 +49694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49776,62 +49711,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27196] = 24, - ACTIONS(311), 1, + [27374] = 24, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(993), 1, + anon_sym_not, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(972), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1098), 1, sym_string, - STATE(1325), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1801), 1, sym_expression, - STATE(2442), 1, - sym_with_item, - STATE(2678), 1, + STATE(2254), 1, + sym_slice, + STATE(2595), 1, sym__named_expression_lhs, - STATE(2693), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(987), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(985), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49839,7 +49774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49856,61 +49791,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27300] = 23, - ACTIONS(805), 1, + [27478] = 23, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(833), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1171), 1, - sym_identifier, ACTIONS(1265), 1, anon_sym_STAR, ACTIONS(1271), 1, anon_sym_lambda, - STATE(928), 1, + STATE(880), 1, sym_primary_expression, - STATE(977), 1, + STATE(963), 1, sym_string, - STATE(1200), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1794), 1, sym_expression, - STATE(2649), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, + STATE(1895), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49918,7 +49853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49935,65 +49870,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27402] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [27580] = 23, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(735), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, + sym_string_start, + ACTIONS(833), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_not, + ACTIONS(855), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1265), 1, + anon_sym_STAR, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(880), 1, sym_primary_expression, - STATE(1325), 1, + STATE(963), 1, + sym_string, + STATE(1213), 1, sym_list_splat_pattern, + STATE(1794), 1, + sym_expression, + STATE(2646), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(1435), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(316), 3, + STATE(1931), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(721), 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(1311), 16, + STATE(1767), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50010,62 +49949,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27496] = 24, - ACTIONS(311), 1, + [27682] = 23, + ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(855), 1, + anon_sym_await, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(880), 1, sym_primary_expression, - STATE(1025), 1, + STATE(963), 1, sym_string, - STATE(1325), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1822), 1, sym_expression, - STATE(2442), 1, - sym_with_item, - STATE(2651), 1, - sym_with_clause, - STATE(2678), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(843), 2, + anon_sym_match, + anon_sym_type, + STATE(2044), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(841), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50073,7 +50011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50090,61 +50028,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27600] = 23, - ACTIONS(715), 1, - anon_sym_LPAREN, + [27784] = 23, ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1265), 1, anon_sym_STAR, - ACTIONS(1311), 1, + ACTIONS(1271), 1, anon_sym_lambda, - STATE(964), 1, + STATE(880), 1, sym_primary_expression, - STATE(980), 1, + STATE(963), 1, sym_string, - STATE(1229), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1790), 1, sym_expression, - STATE(2645), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - STATE(1904), 2, + STATE(2050), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50152,7 +50090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50169,66 +50107,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27702] = 20, - ACTIONS(304), 1, - anon_sym_in, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - anon_sym_COMMA, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [27886] = 23, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(757), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(993), 1, + anon_sym_not, + ACTIONS(995), 1, + anon_sym_lambda, + ACTIONS(997), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1345), 1, + anon_sym_STAR, + STATE(972), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1098), 1, + sym_string, + STATE(1423), 1, sym_list_splat_pattern, + STATE(1884), 1, + sym_expression, + STATE(2595), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(1445), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(743), 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(1311), 16, + STATE(1743), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50245,61 +50186,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27798] = 23, - ACTIONS(67), 1, + [27988] = 24, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(972), 1, sym_primary_expression, - STATE(969), 1, + STATE(1098), 1, sym_string, - STATE(1135), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1850), 1, sym_expression, - STATE(2672), 1, + STATE(2547), 1, + sym_slice, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(1459), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50307,7 +50249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50324,61 +50266,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27900] = 23, - ACTIONS(759), 1, + [28092] = 23, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, ACTIONS(1275), 1, + anon_sym_STAR, + ACTIONS(1279), 1, anon_sym_lambda, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1839), 1, + STATE(1779), 1, sym_expression, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - STATE(2095), 2, + STATE(2031), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50386,7 +50328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50403,61 +50345,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28002] = 23, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [28194] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(871), 1, + ACTIONS(402), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + STATE(853), 1, sym_primary_expression, - STATE(980), 1, + STATE(953), 1, sym_string, - STATE(1229), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1858), 1, sym_expression, - STATE(2645), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - STATE(1916), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(1447), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50465,7 +50407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50482,61 +50424,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28104] = 23, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [28296] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(871), 1, + ACTIONS(402), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + STATE(853), 1, sym_primary_expression, - STATE(980), 1, + STATE(953), 1, sym_string, - STATE(1229), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1808), 1, + STATE(1858), 1, sym_expression, - STATE(2645), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - STATE(2038), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(1449), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50544,7 +50486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50561,56 +50503,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28206] = 23, - ACTIONS(715), 1, + [28398] = 23, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1275), 1, anon_sym_STAR, - ACTIONS(1311), 1, + ACTIONS(1279), 1, anon_sym_lambda, - STATE(964), 1, + STATE(956), 1, sym_primary_expression, - STATE(980), 1, + STATE(977), 1, sym_string, - STATE(1229), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1786), 1, sym_expression, - STATE(2645), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - STATE(2073), 2, + STATE(2066), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, @@ -50623,7 +50565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50640,61 +50582,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28308] = 23, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [28500] = 24, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(310), 1, + anon_sym_lambda, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + STATE(955), 1, sym_primary_expression, - STATE(980), 1, + STATE(1003), 1, sym_string, - STATE(1229), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1919), 1, sym_expression, - STATE(2645), 1, + STATE(2267), 1, + sym_with_item, + STATE(2621), 1, + sym_with_clause, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50702,7 +50645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50719,61 +50662,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28410] = 23, - ACTIONS(67), 1, + [28604] = 24, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1451), 1, + anon_sym_COLON, + STATE(955), 1, sym_primary_expression, - STATE(969), 1, + STATE(1003), 1, sym_string, - STATE(1135), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1919), 1, sym_expression, - STATE(2672), 1, + STATE(2551), 1, + sym_with_item, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(1461), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50781,7 +50725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50798,61 +50742,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28512] = 23, - ACTIONS(67), 1, + [28708] = 23, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(879), 1, + anon_sym_not, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1279), 1, + anon_sym_lambda, + STATE(956), 1, sym_primary_expression, - STATE(969), 1, + STATE(977), 1, sym_string, - STATE(1135), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1803), 1, sym_expression, - STATE(2672), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(1463), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(2032), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50860,7 +50804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50877,61 +50821,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28614] = 23, - ACTIONS(759), 1, + [28810] = 24, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(995), 1, + anon_sym_lambda, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, + ACTIONS(1347), 1, + anon_sym_COLON, STATE(972), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1098), 1, sym_string, - STATE(1390), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1826), 1, sym_expression, - STATE(2684), 1, + STATE(2293), 1, + sym_slice, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50939,7 +50884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50956,65 +50901,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28716] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [28914] = 24, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(757), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(993), 1, + anon_sym_not, + ACTIONS(995), 1, + anon_sym_lambda, + ACTIONS(997), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1345), 1, + anon_sym_STAR, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(972), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1098), 1, + sym_string, + STATE(1423), 1, sym_list_splat_pattern, + STATE(1823), 1, + sym_expression, + STATE(2250), 1, + sym_slice, + STATE(2595), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(322), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(743), 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(1311), 16, + STATE(1743), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51031,62 +50981,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28810] = 24, - ACTIONS(783), 1, + [29018] = 24, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1465), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(972), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1098), 1, sym_string, - STATE(1316), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1817), 1, sym_expression, - STATE(2551), 1, - sym_with_item, - STATE(2630), 1, + STATE(2304), 1, + sym_slice, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51094,7 +51044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51111,62 +51061,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28914] = 24, - ACTIONS(311), 1, + [29122] = 24, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(993), 1, + anon_sym_not, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1467), 1, + ACTIONS(1347), 1, anon_sym_COLON, - STATE(971), 1, + STATE(972), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1098), 1, sym_string, - STATE(1325), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1798), 1, sym_expression, - STATE(2565), 1, - sym_with_item, - STATE(2678), 1, + STATE(2353), 1, + sym_slice, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(987), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(985), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51174,7 +51124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51191,62 +51141,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29018] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, + [29226] = 24, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1815), 1, sym_expression, - STATE(2505), 1, + STATE(2375), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51254,7 +51204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51271,222 +51221,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29122] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, + [29330] = 24, ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, - sym_string, - STATE(1451), 1, - sym_list_splat_pattern, - STATE(1795), 1, - sym_expression, - STATE(2267), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(735), 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(1462), 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, - [29226] = 24, - ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, - sym_string, - STATE(1451), 1, - sym_list_splat_pattern, - STATE(1819), 1, - sym_expression, - STATE(2314), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(735), 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(1462), 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, - [29330] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1363), 1, anon_sym_COLON, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1833), 1, + STATE(1780), 1, sym_expression, - STATE(2359), 1, + STATE(2398), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51494,7 +51284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51512,61 +51302,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [29434] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1801), 1, + STATE(1788), 1, sym_expression, - STATE(2388), 1, + STATE(2420), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51574,7 +51364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51592,61 +51382,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [29538] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1811), 1, + STATE(1792), 1, sym_expression, - STATE(2414), 1, + STATE(2430), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51654,7 +51444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51672,61 +51462,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [29642] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - STATE(992), 1, + STATE(972), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1793), 1, sym_expression, - STATE(2440), 1, + STATE(2435), 1, sym_slice, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51734,7 +51524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51752,61 +51542,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [29746] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, + STATE(955), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1816), 1, + STATE(1919), 1, sym_expression, - STATE(2450), 1, - sym_slice, - STATE(2786), 1, + STATE(2267), 1, + sym_with_item, + STATE(2666), 1, + sym_with_clause, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51814,7 +51604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51832,61 +51622,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [29850] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, + STATE(955), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1919), 1, sym_expression, - STATE(2456), 1, - sym_slice, - STATE(2786), 1, + STATE(2267), 1, + sym_with_item, + STATE(2673), 1, + sym_with_clause, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51894,7 +51684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51912,60 +51702,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [29954] = 23, - ACTIONS(805), 1, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1200), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1831), 1, + STATE(1795), 1, sym_expression, - STATE(2649), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - STATE(2086), 2, + STATE(2100), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51973,7 +51763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51991,23 +51781,23 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30056] = 10, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_COLON_EQ, - ACTIONS(1469), 1, + ACTIONS(1453), 1, anon_sym_for, - ACTIONS(1471), 1, + ACTIONS(1455), 1, anon_sym_with, - ACTIONS(1473), 1, + ACTIONS(1457), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(304), 2, + ACTIONS(296), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(320), 13, + ACTIONS(312), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52021,7 +51811,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(271), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -52037,7 +51827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, + ACTIONS(269), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -52056,59 +51846,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, [30131] = 23, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1866), 1, sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - STATE(2711), 1, + STATE(2691), 1, sym_expression_list, + STATE(2772), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52116,7 +51906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52134,59 +51924,59 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30232] = 23, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(1291), 1, anon_sym_COLON, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1898), 1, + STATE(1904), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52194,7 +51984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52212,59 +52002,59 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30333] = 23, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1313), 1, + ACTIONS(1297), 1, anon_sym_COLON, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1898), 1, + STATE(1904), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52272,7 +52062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52290,59 +52080,59 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30434] = 23, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1459), 1, + anon_sym_COLON, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1966), 1, sym_expression, - STATE(2565), 1, - sym_with_item, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52350,7 +52140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52368,137 +52158,59 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30535] = 23, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1475), 1, - anon_sym_COLON, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1896), 1, - sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 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, - [30636] = 23, - ACTIONS(783), 1, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1978), 1, sym_expression, - STATE(2551), 1, + STATE(2545), 1, sym_with_item, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52506,7 +52218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52523,60 +52235,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30737] = 23, - ACTIONS(311), 1, + [30636] = 23, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1477), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1919), 1, sym_expression, - STATE(2678), 1, + STATE(2551), 1, + sym_with_item, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52584,7 +52296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52601,102 +52313,90 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30838] = 23, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, - anon_sym_STAR, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1869), 1, - sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - STATE(2760), 1, - sym_expression_list, + [30737] = 10, + ACTIONS(276), 1, + anon_sym_COMMA, + ACTIONS(284), 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(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(296), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(312), 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(271), 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_TILDE, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 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, - [30939] = 10, - ACTIONS(284), 1, + 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(269), 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, + [30812] = 11, + ACTIONS(276), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_COLON_EQ, - ACTIONS(1479), 1, + ACTIONS(286), 1, + anon_sym_COLON, + ACTIONS(296), 1, + anon_sym_EQ, + ACTIONS(1467), 1, sym_identifier, - ACTIONS(1481), 1, + ACTIONS(1469), 1, sym_string_start, - STATE(2344), 1, + STATE(2306), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(304), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(277), 10, + ACTIONS(269), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -52707,7 +52407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(320), 13, + ACTIONS(312), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52721,7 +52421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 22, + ACTIONS(271), 22, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -52744,60 +52444,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT, anon_sym_GT, - [31014] = 23, - ACTIONS(67), 1, + [30889] = 23, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1471), 1, + anon_sym_COLON, + STATE(955), 1, sym_primary_expression, - STATE(969), 1, + STATE(1003), 1, sym_string, - STATE(1135), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1966), 1, sym_expression, - STATE(2568), 1, - sym_expression_list, - STATE(2672), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52805,7 +52505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52822,60 +52522,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31115] = 23, - ACTIONS(311), 1, + [30990] = 23, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1483), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1872), 1, sym_expression, - STATE(2678), 1, + STATE(2670), 1, + sym_expression_list, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52883,7 +52583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52900,60 +52600,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31216] = 23, - ACTIONS(311), 1, + [31091] = 23, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1473), 1, + anon_sym_COLON, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1872), 1, + STATE(1966), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, - STATE(2777), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52961,7 +52661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52978,60 +52678,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31317] = 23, - ACTIONS(311), 1, + [31192] = 23, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1485), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1975), 1, + STATE(1853), 1, sym_expression, - STATE(2678), 1, + STATE(2769), 1, + sym_expression_list, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53039,7 +52739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53056,25 +52756,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31418] = 11, - ACTIONS(284), 1, + [31293] = 10, + ACTIONS(276), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(304), 1, - anon_sym_EQ, - ACTIONS(1479), 1, + ACTIONS(1467), 1, sym_identifier, - ACTIONS(1481), 1, + ACTIONS(1469), 1, sym_string_start, - STATE(2344), 1, + STATE(2306), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 10, + ACTIONS(296), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(269), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -53085,7 +52784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(320), 13, + ACTIONS(312), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53099,7 +52798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 22, + ACTIONS(271), 22, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -53122,125 +52821,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT, anon_sym_GT, - [31495] = 10, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1487), 1, - anon_sym_for, - ACTIONS(1489), 1, - anon_sym_with, - ACTIONS(1491), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(304), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(320), 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, - [31570] = 23, - ACTIONS(311), 1, + [31368] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1319), 1, anon_sym_STAR, - ACTIONS(1493), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(853), 1, sym_primary_expression, - STATE(1025), 1, + STATE(953), 1, sym_string, - STATE(1325), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1809), 1, sym_expression, - STATE(2678), 1, + STATE(2584), 1, + sym_expression_list, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(391), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(387), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53248,7 +52882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53265,60 +52899,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31671] = 23, - ACTIONS(311), 1, + [31469] = 23, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, anon_sym_COLON, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1977), 1, + STATE(1966), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53326,7 +52960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53343,60 +52977,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31772] = 23, - ACTIONS(311), 1, + [31570] = 23, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1477), 1, + anon_sym_COLON, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1848), 1, + STATE(1942), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, - STATE(2702), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53404,7 +53038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53421,58 +53055,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31873] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [31671] = 23, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(310), 1, + anon_sym_lambda, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(1479), 1, + anon_sym_COLON, + STATE(955), 1, sym_primary_expression, - STATE(980), 1, + STATE(1003), 1, sym_string, - STATE(1229), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1946), 1, sym_expression, - STATE(2645), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53480,7 +53116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53497,58 +53133,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31971] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [31772] = 23, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(310), 1, + anon_sym_lambda, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(964), 1, + STATE(955), 1, sym_primary_expression, - STATE(980), 1, + STATE(1003), 1, sym_string, - STATE(1229), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1784), 1, + STATE(1865), 1, sym_expression, - STATE(2645), 1, + STATE(2682), 1, + sym_expression_list, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53556,7 +53194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53573,58 +53211,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32069] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, + [31873] = 22, ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(851), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(964), 1, + STATE(880), 1, sym_primary_expression, - STATE(980), 1, + STATE(963), 1, sym_string, - STATE(1229), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1835), 1, sym_expression, - STATE(2645), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53632,7 +53270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53649,134 +53287,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32167] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [31971] = 22, + ACTIONS(674), 1, anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, - anon_sym_STAR, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1896), 1, - sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 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, - [32265] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1149), 1, anon_sym_await, - ACTIONS(1305), 1, - anon_sym_STAR, - STATE(964), 1, + STATE(888), 1, sym_primary_expression, - STATE(980), 1, + STATE(961), 1, sym_string, - STATE(1229), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1769), 1, sym_expression, - STATE(2645), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53784,7 +53346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53801,58 +53363,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32363] = 22, - ACTIONS(805), 1, + [32069] = 22, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(1265), 1, - anon_sym_STAR, - STATE(928), 1, + ACTIONS(1149), 1, + anon_sym_await, + STATE(888), 1, sym_primary_expression, - STATE(977), 1, + STATE(961), 1, sym_string, - STATE(1200), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1777), 1, sym_expression, - STATE(2649), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53860,7 +53422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53877,58 +53439,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32461] = 22, - ACTIONS(715), 1, + [32167] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(964), 1, + STATE(952), 1, sym_primary_expression, - STATE(980), 1, + STATE(985), 1, sym_string, - STATE(1229), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1792), 1, + STATE(1736), 1, sym_expression, - STATE(2645), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53936,7 +53498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53953,58 +53515,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32559] = 22, - ACTIONS(690), 1, + [32265] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1055), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1772), 1, + STATE(1738), 1, sym_expression, - STATE(2781), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54012,7 +53574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54029,58 +53591,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32657] = 22, - ACTIONS(690), 1, + [32363] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1055), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1793), 1, + STATE(1739), 1, sym_expression, - STATE(2781), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54088,7 +53650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54105,58 +53667,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32755] = 22, - ACTIONS(690), 1, + [32461] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1055), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1779), 1, + STATE(1740), 1, sym_expression, - STATE(2781), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54164,7 +53726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54181,58 +53743,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32853] = 22, - ACTIONS(690), 1, + [32559] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1055), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1741), 1, sym_expression, - STATE(2781), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54240,7 +53802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54257,58 +53819,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32951] = 22, - ACTIONS(690), 1, + [32657] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1055), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1720), 1, sym_expression, - STATE(2781), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54316,7 +53878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54333,58 +53895,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33049] = 22, - ACTIONS(690), 1, + [32755] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1055), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1765), 1, + STATE(1732), 1, sym_expression, - STATE(2781), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54392,7 +53954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54409,58 +53971,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33147] = 22, - ACTIONS(690), 1, + [32853] = 22, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(997), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1345), 1, + anon_sym_STAR, + STATE(972), 1, sym_primary_expression, - STATE(983), 1, + STATE(1098), 1, sym_string, - STATE(1249), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1788), 1, + STATE(1746), 1, sym_expression, - STATE(2781), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54468,7 +54030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54485,121 +54047,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33245] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1503), 1, - anon_sym_except, - ACTIONS(1505), 1, - anon_sym_finally, - STATE(707), 1, - sym_else_clause, - STATE(817), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1497), 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(1499), 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, - [33317] = 22, - ACTIONS(783), 1, + [32951] = 22, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(967), 1, + STATE(972), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1098), 1, sym_string, - STATE(1316), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1747), 1, sym_expression, - STATE(2630), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54607,7 +54106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54624,58 +54123,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33415] = 22, - ACTIONS(783), 1, + [33049] = 22, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(967), 1, + STATE(972), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1098), 1, sym_string, - STATE(1316), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1748), 1, sym_expression, - STATE(2630), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54683,7 +54182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54700,58 +54199,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33513] = 22, - ACTIONS(783), 1, + [33147] = 22, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(967), 1, + STATE(972), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1098), 1, sym_string, - STATE(1316), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1749), 1, sym_expression, - STATE(2630), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54759,7 +54258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54776,58 +54275,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33611] = 22, - ACTIONS(783), 1, + [33245] = 22, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(967), 1, + STATE(972), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1098), 1, sym_string, - STATE(1316), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1750), 1, sym_expression, - STATE(2630), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54835,7 +54334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54852,58 +54351,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33709] = 22, - ACTIONS(783), 1, + [33343] = 22, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(967), 1, + STATE(972), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1098), 1, sym_string, - STATE(1316), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1754), 1, sym_expression, - STATE(2630), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54911,7 +54410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54928,58 +54427,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33807] = 22, - ACTIONS(783), 1, + [33441] = 22, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(967), 1, + STATE(972), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1098), 1, sym_string, - STATE(1316), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(1742), 1, sym_expression, - STATE(2630), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54987,7 +54486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55004,58 +54503,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33905] = 22, - ACTIONS(783), 1, + [33539] = 22, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1133), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(967), 1, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1785), 1, sym_expression, - STATE(2630), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55063,7 +54562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55080,121 +54579,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34003] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1505), 1, - anon_sym_finally, - ACTIONS(1507), 1, - anon_sym_except_STAR, - STATE(707), 1, - sym_else_clause, - STATE(817), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(613), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1497), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [33637] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1499), 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(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, + ACTIONS(402), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [34075] = 22, - ACTIONS(737), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(992), 1, + STATE(853), 1, sym_primary_expression, - STATE(1110), 1, + STATE(953), 1, sym_string, - STATE(1451), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1766), 1, + STATE(1658), 1, sym_expression, - STATE(2786), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55202,7 +54638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55219,58 +54655,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34173] = 22, - ACTIONS(737), 1, - anon_sym_LPAREN, + [33735] = 23, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1481), 1, + sym_identifier, + ACTIONS(1487), 1, + anon_sym_await, + STATE(988), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(1936), 1, sym_expression, - STATE(2786), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1485), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(1199), 2, + sym_attribute, + sym_subscript, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1483), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55278,11 +54717,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1425), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -55295,58 +54732,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34271] = 22, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [33835] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(992), 1, + STATE(853), 1, sym_primary_expression, - STATE(1110), 1, + STATE(953), 1, sym_string, - STATE(1451), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1651), 1, sym_expression, - STATE(2786), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55354,7 +54791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55371,58 +54808,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34369] = 22, - ACTIONS(737), 1, + [33933] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1055), 1, anon_sym_await, ACTIONS(1293), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(992), 1, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1975), 1, sym_expression, - STATE(2786), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55430,7 +54867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55447,58 +54884,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34467] = 22, - ACTIONS(737), 1, + [34031] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1055), 1, anon_sym_await, ACTIONS(1293), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(992), 1, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1971), 1, sym_expression, - STATE(2786), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55506,7 +54943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55523,58 +54960,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34565] = 22, - ACTIONS(737), 1, + [34129] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1055), 1, anon_sym_await, ACTIONS(1293), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(992), 1, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1977), 1, sym_expression, - STATE(2786), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55582,7 +55019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55599,58 +55036,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34663] = 22, - ACTIONS(737), 1, + [34227] = 9, + ACTIONS(1493), 1, + anon_sym_else, + ACTIONS(1495), 1, + anon_sym_except, + ACTIONS(1497), 1, + anon_sym_finally, + STATE(704), 1, + sym_else_clause, + STATE(775), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(612), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1491), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(745), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(749), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1489), 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, - ACTIONS(1029), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1347), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34299] = 22, + ACTIONS(674), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(686), 1, + anon_sym_LBRACE, + ACTIONS(692), 1, + sym_string_start, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1015), 1, + anon_sym_not, + ACTIONS(1017), 1, + anon_sym_lambda, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1149), 1, + anon_sym_await, + STATE(888), 1, sym_primary_expression, - STATE(1110), 1, + STATE(961), 1, sym_string, - STATE(1451), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1941), 1, sym_expression, - STATE(2786), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55658,7 +55158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55675,58 +55175,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34761] = 22, - ACTIONS(805), 1, + [34397] = 22, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(1265), 1, - anon_sym_STAR, - STATE(928), 1, + ACTIONS(1149), 1, + anon_sym_await, + STATE(888), 1, sym_primary_expression, - STATE(977), 1, + STATE(961), 1, sym_string, - STATE(1200), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1706), 1, + STATE(1947), 1, sym_expression, - STATE(2649), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55734,7 +55234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55751,58 +55251,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34859] = 22, - ACTIONS(759), 1, + [34495] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1963), 1, sym_expression, - STATE(2684), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55810,7 +55310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55827,61 +55327,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34957] = 23, - ACTIONS(737), 1, + [34593] = 22, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1509), 1, - sym_identifier, - ACTIONS(1515), 1, + ACTIONS(831), 1, anon_sym_await, - STATE(1037), 1, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1249), 1, + anon_sym_STAR, + STATE(919), 1, sym_primary_expression, - STATE(1110), 1, + STATE(970), 1, sym_string, - STATE(1451), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1971), 1, + STATE(1838), 1, sym_expression, - STATE(2786), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(1513), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - STATE(1158), 2, - sym_attribute, - sym_subscript, - ACTIONS(747), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1511), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55889,9 +55386,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 14, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -55904,58 +55403,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35057] = 22, - ACTIONS(783), 1, + [34691] = 22, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1133), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(967), 1, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1996), 1, + STATE(1804), 1, sym_expression, - STATE(2630), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55963,7 +55462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55980,134 +55479,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35155] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, - anon_sym_STAR, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1899), 1, - sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, + [34789] = 9, + ACTIONS(1493), 1, + anon_sym_else, + ACTIONS(1497), 1, + anon_sym_finally, + ACTIONS(1499), 1, + anon_sym_except_STAR, + STATE(704), 1, + sym_else_clause, + STATE(775), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + STATE(613), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1491), 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(1489), 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(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 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(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 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, - [35253] = 22, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [34861] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(402), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, + anon_sym_STAR, + STATE(853), 1, sym_primary_expression, - STATE(983), 1, + STATE(953), 1, sym_string, - STATE(1249), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1944), 1, + STATE(1858), 1, sym_expression, - STATE(2781), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56115,7 +55601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56132,58 +55618,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35351] = 22, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [34959] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(967), 1, + STATE(955), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1003), 1, sym_string, - STATE(1316), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1900), 1, + STATE(2095), 1, sym_expression, - STATE(2630), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(1077), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56191,7 +55677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56208,58 +55694,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35449] = 22, - ACTIONS(311), 1, + [35057] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2028), 1, + STATE(1966), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56267,7 +55753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56284,58 +55770,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35547] = 22, - ACTIONS(805), 1, + [35155] = 22, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1133), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(928), 1, + STATE(956), 1, sym_primary_expression, STATE(977), 1, sym_string, - STATE(1200), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1873), 1, + STATE(1796), 1, sym_expression, - STATE(2649), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56343,7 +55829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56360,58 +55846,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35645] = 22, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [35253] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(928), 1, + STATE(853), 1, sym_primary_expression, - STATE(977), 1, + STATE(953), 1, sym_string, - STATE(1200), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1653), 1, sym_expression, - STATE(2649), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56419,7 +55905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56436,58 +55922,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35743] = 22, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [35351] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(967), 1, + STATE(853), 1, sym_primary_expression, - STATE(1034), 1, + STATE(953), 1, sym_string, - STATE(1316), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1985), 1, + STATE(1908), 1, sym_expression, - STATE(2630), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56495,7 +55981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56512,58 +55998,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35841] = 22, - ACTIONS(783), 1, + [35449] = 22, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(833), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(851), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(967), 1, + STATE(880), 1, sym_primary_expression, - STATE(1034), 1, + STATE(963), 1, sym_string, - STATE(1316), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1992), 1, + STATE(1762), 1, sym_expression, - STATE(2630), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56571,7 +56057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56588,58 +56074,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35939] = 22, - ACTIONS(67), 1, + [35547] = 22, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(775), 1, + anon_sym_LBRACK, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(870), 1, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(985), 1, sym_string, - STATE(1135), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1903), 1, sym_expression, - STATE(2672), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56647,7 +56133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56664,58 +56150,310 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36037] = 22, - ACTIONS(67), 1, + [35645] = 9, + ACTIONS(1505), 1, + anon_sym_else, + ACTIONS(1507), 1, + anon_sym_except, + ACTIONS(1509), 1, + anon_sym_finally, + STATE(695), 1, + sym_else_clause, + STATE(757), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(616), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1501), 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, - ACTIONS(69), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1503), 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, - ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(81), 1, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [35717] = 9, + ACTIONS(1505), 1, + anon_sym_else, + ACTIONS(1509), 1, + anon_sym_finally, + ACTIONS(1511), 1, + anon_sym_except_STAR, + STATE(695), 1, + sym_else_clause, + STATE(757), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(617), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1501), 12, sym_string_start, - ACTIONS(387), 1, + 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(1503), 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(410), 1, anon_sym_await, - ACTIONS(653), 1, + sym_true, + sym_false, + sym_none, + [35789] = 9, + ACTIONS(1493), 1, + anon_sym_else, + ACTIONS(1495), 1, + anon_sym_except, + ACTIONS(1497), 1, + anon_sym_finally, + STATE(687), 1, + sym_else_clause, + STATE(730), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(612), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1501), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(661), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1317), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1503), 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, + [35861] = 9, + ACTIONS(1493), 1, + anon_sym_else, + ACTIONS(1497), 1, + anon_sym_finally, + ACTIONS(1499), 1, + anon_sym_except_STAR, + STATE(687), 1, + sym_else_clause, + STATE(730), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(613), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1501), 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(1503), 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, + [35933] = 22, + ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, + sym_string_start, + ACTIONS(833), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_not, + ACTIONS(851), 1, + anon_sym_lambda, + ACTIONS(855), 1, + anon_sym_await, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(870), 1, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(963), 1, sym_string, - STATE(1135), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(1768), 1, sym_expression, - STATE(2672), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56723,7 +56461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56740,61 +56478,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36135] = 23, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [36031] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1355), 1, - anon_sym_STAR, - ACTIONS(1517), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - ACTIONS(1523), 1, + ACTIONS(402), 1, anon_sym_await, - STATE(1033), 1, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, + anon_sym_STAR, + STATE(853), 1, sym_primary_expression, - STATE(1034), 1, + STATE(953), 1, sym_string, - STATE(1316), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1964), 1, + STATE(1655), 1, sym_expression, - STATE(2630), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1521), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - STATE(1400), 2, - sym_attribute, - sym_subscript, - ACTIONS(793), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1519), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56802,9 +56537,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 14, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -56817,58 +56554,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36235] = 22, - ACTIONS(783), 1, + [36129] = 22, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(833), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(851), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(967), 1, + STATE(880), 1, sym_primary_expression, - STATE(1034), 1, + STATE(963), 1, sym_string, - STATE(1316), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1987), 1, + STATE(1751), 1, sym_expression, - STATE(2630), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56876,7 +56613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56893,58 +56630,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36333] = 22, - ACTIONS(311), 1, + [36227] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2094), 1, + STATE(1724), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56952,7 +56689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56969,58 +56706,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36431] = 22, - ACTIONS(311), 1, + [36325] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1725), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57028,7 +56765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57045,7 +56782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36529] = 22, + [36423] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -57054,25 +56791,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(402), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(870), 1, + STATE(853), 1, sym_primary_expression, - STATE(969), 1, + STATE(953), 1, sym_string, - STATE(1135), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1656), 1, sym_expression, - STATE(2672), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -57080,14 +56817,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -57096,7 +56833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57104,7 +56841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57121,58 +56858,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36627] = 22, - ACTIONS(311), 1, + [36521] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2099), 1, + STATE(1922), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57180,7 +56917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57197,58 +56934,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36725] = 22, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [36619] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(928), 1, + STATE(955), 1, sym_primary_expression, - STATE(977), 1, + STATE(1003), 1, sym_string, - STATE(1200), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(2007), 1, sym_expression, - STATE(2649), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, - sym_ellipsis, - sym_float, - ACTIONS(833), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57256,7 +56993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57273,7 +57010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36823] = 22, + [36717] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -57282,25 +57019,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(402), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(870), 1, + STATE(853), 1, sym_primary_expression, - STATE(969), 1, + STATE(953), 1, sym_string, - STATE(1135), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1669), 1, + STATE(1649), 1, sym_expression, - STATE(2672), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -57308,14 +57045,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -57324,7 +57061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57332,7 +57069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57349,58 +57086,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36921] = 22, - ACTIONS(67), 1, + [36815] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(870), 1, + STATE(955), 1, sym_primary_expression, - STATE(969), 1, + STATE(1003), 1, sym_string, - STATE(1135), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1666), 1, + STATE(1726), 1, sym_expression, - STATE(2672), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57408,7 +57145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57425,58 +57162,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37019] = 22, - ACTIONS(67), 1, + [36913] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(870), 1, + STATE(955), 1, sym_primary_expression, - STATE(969), 1, + STATE(1003), 1, sym_string, - STATE(1135), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1799), 1, + STATE(1727), 1, sym_expression, - STATE(2672), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57484,7 +57221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57501,58 +57238,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37117] = 22, - ACTIONS(311), 1, + [37011] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(971), 1, + STATE(853), 1, sym_primary_expression, - STATE(1025), 1, + STATE(953), 1, sym_string, - STATE(1325), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1753), 1, + STATE(1657), 1, sym_expression, - STATE(2678), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(391), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(387), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57560,7 +57297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57577,58 +57314,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37215] = 22, - ACTIONS(311), 1, + [37109] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1728), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57636,7 +57373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57653,58 +57390,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37313] = 22, - ACTIONS(67), 1, + [37207] = 22, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(870), 1, + STATE(956), 1, sym_primary_expression, - STATE(969), 1, + STATE(977), 1, sym_string, - STATE(1135), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1812), 1, + STATE(1873), 1, sym_expression, - STATE(2672), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57712,7 +57449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57729,58 +57466,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37411] = 22, - ACTIONS(67), 1, + [37305] = 22, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(870), 1, + STATE(972), 1, sym_primary_expression, - STATE(969), 1, + STATE(1098), 1, sym_string, - STATE(1135), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1862), 1, + STATE(1959), 1, sym_expression, - STATE(2672), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57788,7 +57525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57805,58 +57542,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37509] = 22, - ACTIONS(67), 1, + [37403] = 22, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(775), 1, + anon_sym_LBRACK, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(870), 1, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(985), 1, sym_string, - STATE(1135), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(2056), 1, + STATE(1961), 1, sym_expression, - STATE(2672), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57864,7 +57601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57881,134 +57618,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37607] = 22, - ACTIONS(311), 1, + [37501] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1722), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 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, - [37705] = 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(387), 1, - sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(870), 1, - sym_primary_expression, - STATE(969), 1, - sym_string, - STATE(1135), 1, - sym_list_splat_pattern, - STATE(1924), 1, - sym_expression, - STATE(2672), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58016,7 +57677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58033,58 +57694,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37803] = 22, - ACTIONS(737), 1, + [37599] = 23, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1513), 1, sym_identifier, - ACTIONS(1347), 1, - anon_sym_STAR, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, + ACTIONS(1519), 1, + anon_sym_await, + STATE(961), 1, sym_string, - STATE(1451), 1, + STATE(1021), 1, + sym_primary_expression, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1927), 1, + STATE(1952), 1, sym_expression, - STATE(2786), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1517), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(1253), 2, + sym_attribute, + sym_subscript, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1515), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58092,11 +57756,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1251), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -58109,58 +57771,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37901] = 22, - ACTIONS(783), 1, + [37699] = 22, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(967), 1, + STATE(919), 1, sym_primary_expression, - STATE(1034), 1, + STATE(970), 1, sym_string, - STATE(1316), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1982), 1, + STATE(1676), 1, sym_expression, - STATE(2630), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58168,7 +57830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58185,137 +57847,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37999] = 22, - ACTIONS(311), 1, + [37797] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(971), 1, + STATE(853), 1, sym_primary_expression, - STATE(1025), 1, + STATE(953), 1, sym_string, - STATE(1325), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1747), 1, + STATE(1652), 1, sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 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, - [38097] = 23, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, - anon_sym_lambda, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1531), 1, - anon_sym_await, - STATE(983), 1, - sym_string, - STATE(1047), 1, - sym_primary_expression, - STATE(1249), 1, - sym_list_splat_pattern, - STATE(1926), 1, - sym_expression, - STATE(2781), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1529), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - STATE(1199), 2, - sym_attribute, - sym_subscript, - ACTIONS(700), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1527), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58323,9 +57906,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 14, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -58338,58 +57923,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38197] = 22, - ACTIONS(311), 1, + [37895] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1743), 1, + STATE(1904), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58397,7 +57982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58414,58 +57999,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38295] = 22, - ACTIONS(311), 1, + [37993] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(2020), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58473,7 +58058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58490,58 +58075,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38393] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [38091] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(310), 1, + anon_sym_lambda, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(964), 1, + STATE(955), 1, sym_primary_expression, - STATE(980), 1, + STATE(1003), 1, sym_string, - STATE(1229), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1969), 1, sym_expression, - STATE(2645), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58549,7 +58134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58566,58 +58151,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38491] = 22, - ACTIONS(67), 1, + [38189] = 22, + ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(849), 1, + anon_sym_not, + ACTIONS(851), 1, + anon_sym_lambda, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(870), 1, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(963), 1, sym_string, - STATE(1135), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1752), 1, sym_expression, - STATE(2672), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58625,7 +58210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58642,58 +58227,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38589] = 22, - ACTIONS(311), 1, + [38287] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1744), 1, + STATE(2021), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58701,7 +58286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58718,58 +58303,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38687] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [38385] = 22, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(971), 1, + STATE(956), 1, sym_primary_expression, - STATE(1025), 1, + STATE(977), 1, sym_string, - STATE(1325), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(2096), 1, + STATE(1828), 1, sym_expression, - STATE(2678), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1131), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1129), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58777,7 +58362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58794,58 +58379,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38785] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [38483] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(402), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(964), 1, + STATE(853), 1, sym_primary_expression, - STATE(980), 1, + STATE(953), 1, sym_string, - STATE(1229), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1782), 1, + STATE(2101), 1, sym_expression, - STATE(2645), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58853,7 +58438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58870,58 +58455,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38883] = 22, - ACTIONS(67), 1, + [38581] = 22, + ACTIONS(674), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(692), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1149), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(870), 1, + STATE(888), 1, sym_primary_expression, - STATE(969), 1, + STATE(961), 1, sym_string, - STATE(1135), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1670), 1, + STATE(1764), 1, sym_expression, - STATE(2672), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58929,7 +58514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58946,58 +58531,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38981] = 22, - ACTIONS(311), 1, + [38679] = 22, + ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(993), 1, + anon_sym_not, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(971), 1, + STATE(972), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1098), 1, sym_string, - STATE(1325), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1741), 1, + STATE(1948), 1, sym_expression, - STATE(2678), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(987), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(985), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59005,7 +58590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59022,58 +58607,124 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39079] = 22, - ACTIONS(690), 1, + [38777] = 9, + ACTIONS(1505), 1, + anon_sym_else, + ACTIONS(1509), 1, + anon_sym_finally, + ACTIONS(1511), 1, + anon_sym_except_STAR, + STATE(698), 1, + sym_else_clause, + STATE(807), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(617), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1491), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(698), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(702), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(708), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1489), 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, + [38849] = 23, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(775), 1, + anon_sym_LBRACK, + ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(1521), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1527), 1, anon_sym_await, - STATE(927), 1, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1769), 1, + STATE(1974), 1, sym_expression, - STATE(2781), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1525), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + STATE(1474), 2, + sym_attribute, + sym_subscript, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1523), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59081,11 +58732,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1308), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59098,58 +58747,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39177] = 22, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [38949] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(992), 1, + STATE(955), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1003), 1, sym_string, - STATE(1451), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2105), 1, sym_expression, - STATE(2786), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59157,7 +58806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59174,58 +58823,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39275] = 22, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [39047] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(928), 1, + STATE(955), 1, sym_primary_expression, - STATE(977), 1, + STATE(1003), 1, sym_string, - STATE(1200), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1729), 1, sym_expression, - STATE(2649), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, - sym_ellipsis, - sym_float, - ACTIONS(833), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59233,7 +58882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59250,61 +58899,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39373] = 23, - ACTIONS(783), 1, + [39145] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1355), 1, - anon_sym_STAR, - ACTIONS(1523), 1, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(1533), 1, + ACTIONS(1293), 1, sym_identifier, - STATE(967), 1, + ACTIONS(1339), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1964), 1, + STATE(1879), 1, sym_expression, - STATE(2630), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1537), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - STATE(1481), 2, - sym_attribute, - sym_subscript, - ACTIONS(793), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1535), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59312,9 +58958,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 14, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59327,58 +58975,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39473] = 22, - ACTIONS(311), 1, + [39243] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(1730), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59386,7 +59034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59403,58 +59051,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39571] = 22, - ACTIONS(311), 1, + [39341] = 22, + ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(851), 1, + anon_sym_lambda, + ACTIONS(855), 1, + anon_sym_await, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(971), 1, + STATE(880), 1, sym_primary_expression, - STATE(1025), 1, + STATE(963), 1, sym_string, - STATE(1325), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(2089), 1, + STATE(1755), 1, sym_expression, - STATE(2678), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(843), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(841), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59462,7 +59110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59479,58 +59127,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39669] = 22, - ACTIONS(759), 1, + [39439] = 23, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1345), 1, anon_sym_STAR, + ACTIONS(1487), 1, + anon_sym_await, + ACTIONS(1529), 1, + sym_identifier, STATE(972), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1098), 1, sym_string, - STATE(1390), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1936), 1, sym_expression, - STATE(2684), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1533), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + STATE(1475), 2, + sym_attribute, + sym_subscript, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1531), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59538,11 +59189,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1425), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59555,58 +59204,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39767] = 22, - ACTIONS(67), 1, + [39539] = 22, + ACTIONS(674), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(692), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1149), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(870), 1, + STATE(888), 1, sym_primary_expression, - STATE(969), 1, + STATE(961), 1, sym_string, - STATE(1135), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1744), 1, sym_expression, - STATE(2672), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59614,7 +59263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59631,58 +59280,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39865] = 22, - ACTIONS(67), 1, + [39637] = 23, + ACTIONS(674), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(692), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1519), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(870), 1, + ACTIONS(1535), 1, + sym_identifier, + STATE(888), 1, sym_primary_expression, - STATE(969), 1, + STATE(961), 1, sym_string, - STATE(1135), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1668), 1, + STATE(1952), 1, sym_expression, - STATE(2672), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1539), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1470), 2, + sym_attribute, + sym_subscript, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1537), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59690,11 +59342,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1251), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59707,58 +59357,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39963] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [39737] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(402), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(964), 1, + STATE(853), 1, sym_primary_expression, - STATE(980), 1, + STATE(953), 1, sym_string, - STATE(1229), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1973), 1, sym_expression, - STATE(2645), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59766,7 +59416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59783,61 +59433,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40061] = 23, - ACTIONS(737), 1, + [39835] = 22, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(833), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(851), 1, anon_sym_lambda, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1515), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1539), 1, - sym_identifier, - STATE(992), 1, + ACTIONS(1265), 1, + anon_sym_STAR, + STATE(880), 1, sym_primary_expression, - STATE(1110), 1, + STATE(963), 1, sym_string, - STATE(1451), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1971), 1, + STATE(1753), 1, sym_expression, - STATE(2786), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(1543), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - STATE(1482), 2, - sym_attribute, - sym_subscript, - ACTIONS(747), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1541), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59845,9 +59492,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 14, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59860,61 +59509,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40161] = 23, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [39933] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1515), 1, - anon_sym_await, - ACTIONS(1545), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - STATE(1037), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, + anon_sym_STAR, + STATE(853), 1, sym_primary_expression, - STATE(1110), 1, + STATE(953), 1, sym_string, - STATE(1451), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1971), 1, + STATE(1781), 1, sym_expression, - STATE(2786), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1513), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - STATE(1158), 2, - sym_attribute, - sym_subscript, - ACTIONS(747), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1511), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59922,9 +59568,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 14, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59937,58 +59585,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40261] = 22, - ACTIONS(690), 1, + [40031] = 22, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1149), 1, anon_sym_await, - STATE(927), 1, + STATE(888), 1, sym_primary_expression, - STATE(983), 1, + STATE(961), 1, sym_string, - STATE(1249), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1949), 1, + STATE(1761), 1, sym_expression, - STATE(2781), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59996,7 +59644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60013,58 +59661,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40359] = 22, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [40129] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(318), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, + sym_identifier, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(955), 1, sym_primary_expression, - STATE(983), 1, + STATE(1003), 1, sym_string, - STATE(1249), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1791), 1, + STATE(2019), 1, sym_expression, - STATE(2781), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1113), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60072,7 +59720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60089,61 +59737,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40457] = 23, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [40227] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1531), 1, - anon_sym_await, - ACTIONS(1547), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - STATE(927), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, + anon_sym_STAR, + STATE(853), 1, sym_primary_expression, - STATE(983), 1, + STATE(953), 1, sym_string, - STATE(1249), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1926), 1, + STATE(1937), 1, sym_expression, - STATE(2781), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1551), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - STATE(1483), 2, - sym_attribute, - sym_subscript, - ACTIONS(700), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1549), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60151,9 +59796,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 14, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -60166,58 +59813,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40557] = 22, - ACTIONS(805), 1, + [40325] = 22, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(1055), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(928), 1, + STATE(952), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1200), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1723), 1, sym_expression, - STATE(2649), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1045), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1043), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60225,7 +59872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60242,58 +59889,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40655] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [40423] = 22, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(971), 1, + STATE(956), 1, sym_primary_expression, - STATE(1025), 1, + STATE(977), 1, sym_string, - STATE(1325), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(2110), 1, + STATE(1789), 1, sym_expression, - STATE(2678), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1131), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1129), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60301,7 +59948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60318,184 +59965,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40753] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1503), 1, - anon_sym_except, - ACTIONS(1505), 1, - anon_sym_finally, - STATE(710), 1, - sym_else_clause, - STATE(741), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1553), 12, - sym_string_start, - ts_builtin_sym_end, + [40521] = 22, + ACTIONS(723), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(731), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(735), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1555), 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, - [40825] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1505), 1, - anon_sym_finally, - ACTIONS(1507), 1, - anon_sym_except_STAR, - STATE(710), 1, - sym_else_clause, - STATE(741), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(613), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1553), 12, + ACTIONS(741), 1, 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(1555), 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(833), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [40897] = 22, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(851), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(972), 1, + STATE(880), 1, sym_primary_expression, - STATE(1044), 1, + STATE(963), 1, sym_string, - STATE(1390), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1759), 1, sym_expression, - STATE(2684), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60503,7 +60024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60520,58 +60041,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40995] = 22, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [40619] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(402), 1, + anon_sym_await, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(967), 1, + STATE(853), 1, sym_primary_expression, - STATE(1034), 1, + STATE(953), 1, sym_string, - STATE(1316), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1860), 1, sym_expression, - STATE(2630), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60579,7 +60100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60596,58 +60117,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41093] = 22, - ACTIONS(759), 1, + [40717] = 23, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(785), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(972), 1, + ACTIONS(1527), 1, + anon_sym_await, + ACTIONS(1541), 1, + sym_identifier, + STATE(984), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1837), 1, + STATE(1974), 1, sym_expression, - STATE(2684), 1, + STATE(2639), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1545), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + STATE(1406), 2, + sym_attribute, + sym_subscript, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1543), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(765), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1721), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60655,11 +60179,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1308), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60672,58 +60194,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41191] = 22, - ACTIONS(759), 1, + [40817] = 22, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(997), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1345), 1, anon_sym_STAR, STATE(972), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1098), 1, sym_string, - STATE(1390), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1840), 1, + STATE(1745), 1, sym_expression, - STATE(2684), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(987), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60731,7 +60253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60748,58 +60270,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41289] = 22, - ACTIONS(759), 1, + [40915] = 22, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1059), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1133), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(972), 1, + STATE(956), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1841), 1, + STATE(1778), 1, sym_expression, - STATE(2684), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60807,7 +60329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60824,58 +60346,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41387] = 22, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [41013] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1059), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(402), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(972), 1, + STATE(853), 1, sym_primary_expression, - STATE(1044), 1, + STATE(953), 1, sym_string, - STATE(1390), 1, + STATE(1049), 1, sym_list_splat_pattern, - STATE(1842), 1, + STATE(1816), 1, sym_expression, - STATE(2684), 1, + STATE(2724), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(391), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60883,7 +60405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60900,58 +60422,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41485] = 22, - ACTIONS(783), 1, + [41111] = 22, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1133), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(967), 1, + STATE(956), 1, sym_primary_expression, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1316), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(1736), 1, + STATE(1807), 1, sym_expression, - STATE(2630), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1131), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1129), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60959,7 +60481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60976,58 +60498,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41583] = 22, - ACTIONS(67), 1, + [41209] = 22, + ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(833), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(849), 1, + anon_sym_not, + ACTIONS(851), 1, + anon_sym_lambda, + ACTIONS(855), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(870), 1, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(963), 1, sym_string, - STATE(1135), 1, + STATE(1213), 1, sym_list_splat_pattern, - STATE(1677), 1, + STATE(1770), 1, sym_expression, - STATE(2672), 1, + STATE(2646), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(843), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(841), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(721), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61035,7 +60557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61052,58 +60574,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41681] = 22, - ACTIONS(311), 1, + [41307] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1751), 1, + STATE(2004), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61111,7 +60633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61128,58 +60650,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41779] = 22, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [41405] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(318), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, + sym_identifier, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(955), 1, sym_primary_expression, - STATE(983), 1, + STATE(1003), 1, sym_string, - STATE(1249), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(2001), 1, sym_expression, - STATE(2781), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1113), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61187,7 +60709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61204,58 +60726,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41877] = 22, - ACTIONS(67), 1, + [41503] = 22, + ACTIONS(789), 1, + anon_sym_LPAREN, + ACTIONS(797), 1, + anon_sym_LBRACK, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(807), 1, + sym_string_start, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(870), 1, + STATE(919), 1, sym_primary_expression, - STATE(969), 1, + STATE(970), 1, sym_string, - STATE(1135), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1981), 1, + STATE(1707), 1, sym_expression, - STATE(2672), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61263,7 +60785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61280,58 +60802,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41975] = 22, - ACTIONS(737), 1, + [41601] = 22, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(1347), 1, - anon_sym_STAR, - STATE(992), 1, + ACTIONS(1149), 1, + anon_sym_await, + STATE(888), 1, sym_primary_expression, - STATE(1110), 1, + STATE(961), 1, sym_string, - STATE(1451), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1766), 1, sym_expression, - STATE(2786), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61339,7 +60861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61356,58 +60878,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42073] = 22, - ACTIONS(759), 1, + [41699] = 22, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(692), 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(1059), 1, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1149), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - STATE(972), 1, + STATE(888), 1, sym_primary_expression, - STATE(1044), 1, + STATE(961), 1, sym_string, - STATE(1390), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1771), 1, sym_expression, - STATE(2684), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61415,7 +60937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61432,58 +60954,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42171] = 22, - ACTIONS(67), 1, + [41797] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(870), 1, + STATE(955), 1, sym_primary_expression, - STATE(969), 1, + STATE(1003), 1, sym_string, - STATE(1135), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(2022), 1, sym_expression, - STATE(2672), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61491,7 +61013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61508,184 +61030,137 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42269] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1559), 1, - anon_sym_except, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(723), 1, - sym_else_clause, - STATE(836), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(627), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1553), 12, - sym__dedent, - sym_string_start, + [41895] = 22, + ACTIONS(789), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(797), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(801), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1555), 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(807), 1, + sym_string_start, + ACTIONS(825), 1, anon_sym_not, + ACTIONS(827), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(831), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [42341] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1561), 1, - anon_sym_finally, - ACTIONS(1563), 1, - anon_sym_except_STAR, - STATE(723), 1, - sym_else_clause, - STATE(836), 1, - sym_finally_clause, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1249), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(970), 1, + sym_string, + STATE(1254), 1, + sym_list_splat_pattern, + STATE(1708), 1, + sym_expression, + STATE(2626), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(628), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1553), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(803), 2, + sym_ellipsis, + sym_float, + ACTIONS(817), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(799), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1555), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(815), 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(787), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [42413] = 22, - ACTIONS(759), 1, + STATE(1689), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1148), 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, + [41993] = 23, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(993), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(995), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(972), 1, + ACTIONS(1487), 1, + anon_sym_await, + ACTIONS(1547), 1, + sym_identifier, + STATE(988), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1098), 1, sym_string, - STATE(1390), 1, + STATE(1423), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1936), 1, sym_expression, - STATE(2684), 1, + STATE(2595), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1485), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + STATE(1199), 2, + sym_attribute, + sym_subscript, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1483), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(743), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1743), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61693,11 +61168,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1425), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61710,58 +61183,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42511] = 22, - ACTIONS(311), 1, + [42093] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2123), 1, + STATE(2040), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61769,7 +61242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61786,58 +61259,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42609] = 22, - ACTIONS(715), 1, + [42191] = 22, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1149), 1, anon_sym_await, - ACTIONS(1305), 1, - anon_sym_STAR, - STATE(964), 1, + STATE(888), 1, sym_primary_expression, - STATE(980), 1, + STATE(961), 1, sym_string, - STATE(1229), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1772), 1, sym_expression, - STATE(2645), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1147), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1145), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61845,7 +61318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61862,58 +61335,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42707] = 22, - ACTIONS(311), 1, + [42289] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2103), 1, + STATE(2051), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61921,7 +61394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61938,58 +61411,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42805] = 22, - ACTIONS(311), 1, + [42387] = 22, + ACTIONS(789), 1, + anon_sym_LPAREN, + ACTIONS(797), 1, + anon_sym_LBRACK, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(807), 1, + sym_string_start, + ACTIONS(825), 1, + anon_sym_not, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(971), 1, + STATE(919), 1, sym_primary_expression, - STATE(1025), 1, + STATE(970), 1, sym_string, - STATE(1325), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(2071), 1, + STATE(1710), 1, sym_expression, - STATE(2678), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(817), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(815), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61997,7 +61470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62014,58 +61487,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42903] = 22, - ACTIONS(311), 1, + [42485] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2005), 1, + STATE(2061), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62073,7 +61546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62090,58 +61563,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43001] = 22, - ACTIONS(311), 1, + [42583] = 22, + ACTIONS(789), 1, + anon_sym_LPAREN, + ACTIONS(797), 1, + anon_sym_LBRACK, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(807), 1, + sym_string_start, + ACTIONS(825), 1, + anon_sym_not, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(971), 1, + STATE(919), 1, sym_primary_expression, - STATE(1025), 1, + STATE(970), 1, sym_string, - STATE(1325), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(2026), 1, + STATE(1711), 1, sym_expression, - STATE(2678), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(817), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(815), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62149,7 +61622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62166,58 +61639,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43099] = 22, - ACTIONS(311), 1, + [42681] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2091), 1, + STATE(2064), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62225,7 +61698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62242,58 +61715,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43197] = 22, - ACTIONS(805), 1, + [42779] = 22, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(928), 1, + STATE(919), 1, sym_primary_expression, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1200), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1713), 1, sym_expression, - STATE(2649), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(817), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(815), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62301,7 +61774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62318,58 +61791,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43295] = 22, - ACTIONS(311), 1, + [42877] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2018), 1, + STATE(2070), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62377,7 +61850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62394,58 +61867,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43393] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [42975] = 22, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(1125), 1, + sym_identifier, + ACTIONS(1133), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(971), 1, + STATE(956), 1, sym_primary_expression, - STATE(1025), 1, + STATE(977), 1, sym_string, - STATE(1325), 1, + STATE(1407), 1, sym_list_splat_pattern, - STATE(2033), 1, + STATE(1808), 1, sym_expression, - STATE(2678), 1, + STATE(2712), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1131), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1129), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(697), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1787), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62453,7 +61926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62470,58 +61943,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43491] = 22, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [43073] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(928), 1, + STATE(955), 1, sym_primary_expression, - STATE(977), 1, + STATE(1003), 1, sym_string, - STATE(1200), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(2023), 1, sym_expression, - STATE(2649), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, - sym_ellipsis, - sym_float, - ACTIONS(833), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62529,7 +62002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62546,58 +62019,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43589] = 22, - ACTIONS(311), 1, + [43171] = 22, + ACTIONS(789), 1, + anon_sym_LPAREN, + ACTIONS(797), 1, + anon_sym_LBRACK, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(807), 1, + sym_string_start, + ACTIONS(825), 1, + anon_sym_not, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(971), 1, + STATE(919), 1, sym_primary_expression, - STATE(1025), 1, + STATE(970), 1, sym_string, - STATE(1325), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(2051), 1, + STATE(1667), 1, sym_expression, - STATE(2678), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(817), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(815), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62605,7 +62078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62622,58 +62095,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43687] = 22, - ACTIONS(311), 1, + [43269] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2053), 1, + STATE(2079), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62681,7 +62154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62698,58 +62171,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43785] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [43367] = 22, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(310), 1, + anon_sym_lambda, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(964), 1, + STATE(955), 1, sym_primary_expression, - STATE(980), 1, + STATE(1003), 1, sym_string, - STATE(1229), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1778), 1, + STATE(2080), 1, sym_expression, - STATE(2645), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62757,7 +62230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62774,58 +62247,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43883] = 22, - ACTIONS(311), 1, + [43465] = 9, + ACTIONS(1505), 1, + anon_sym_else, + ACTIONS(1507), 1, + anon_sym_except, + ACTIONS(1509), 1, + anon_sym_finally, + STATE(698), 1, + sym_else_clause, + STATE(807), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(616), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1491), 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, - ACTIONS(318), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1489), 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, + [43537] = 22, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2065), 1, + STATE(1939), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62833,7 +62369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62850,58 +62386,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43981] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [43635] = 22, + ACTIONS(674), 1, anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(686), 1, + anon_sym_LBRACE, + ACTIONS(692), 1, + sym_string_start, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1015), 1, + anon_sym_not, + ACTIONS(1017), 1, + anon_sym_lambda, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1149), 1, + anon_sym_await, + STATE(888), 1, sym_primary_expression, - STATE(1025), 1, + STATE(961), 1, sym_string, - STATE(1325), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(2067), 1, + STATE(1773), 1, sym_expression, - STATE(2678), 1, + STATE(2787), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1147), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1145), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(672), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62909,7 +62445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62926,184 +62462,438 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44079] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1559), 1, - anon_sym_except, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(704), 1, - sym_else_clause, - STATE(753), 1, - sym_finally_clause, + [43733] = 22, + ACTIONS(674), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(686), 1, + anon_sym_LBRACE, + ACTIONS(692), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, + anon_sym_not, + ACTIONS(1017), 1, + anon_sym_lambda, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1149), 1, + anon_sym_await, + STATE(888), 1, + sym_primary_expression, + STATE(961), 1, + sym_string, + STATE(1212), 1, + sym_list_splat_pattern, + STATE(1775), 1, + sym_expression, + STATE(2787), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(627), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1497), 12, - sym__dedent, + ACTIONS(688), 2, + sym_ellipsis, + sym_float, + ACTIONS(1147), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(684), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1145), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(672), 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(1251), 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, + [43831] = 22, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + anon_sym_lambda, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, sym_string_start, + ACTIONS(404), 1, + sym_identifier, + ACTIONS(656), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(666), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(955), 1, + sym_primary_expression, + STATE(1003), 1, + sym_string, + STATE(1300), 1, + sym_list_splat_pattern, + STATE(2087), 1, + sym_expression, + STATE(2772), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(289), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, + ACTIONS(316), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1737), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1392), 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, + [43929] = 22, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + anon_sym_lambda, + ACTIONS(318), 1, + anon_sym_await, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(404), 1, + sym_identifier, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1077), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(955), 1, + sym_primary_expression, + STATE(1003), 1, + sym_string, + STATE(1300), 1, + sym_list_splat_pattern, + STATE(2088), 1, + sym_expression, + STATE(2772), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(289), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1499), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(282), 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, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(316), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1737), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1392), 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, + [44027] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, sym_identifier, + ACTIONS(402), 1, anon_sym_await, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, + anon_sym_STAR, + STATE(853), 1, + sym_primary_expression, + STATE(953), 1, + sym_string, + STATE(1049), 1, + sym_list_splat_pattern, + STATE(1802), 1, + sym_expression, + STATE(2724), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(391), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(387), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, + sym_integer, sym_true, sym_false, sym_none, - [44151] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1561), 1, - anon_sym_finally, - ACTIONS(1563), 1, - anon_sym_except_STAR, - STATE(704), 1, - sym_else_clause, - STATE(753), 1, - sym_finally_clause, + STATE(1659), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1052), 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, + [44125] = 22, + ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, + sym_string_start, + ACTIONS(833), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_not, + ACTIONS(851), 1, + anon_sym_lambda, + ACTIONS(855), 1, + anon_sym_await, + ACTIONS(1265), 1, + anon_sym_STAR, + STATE(880), 1, + sym_primary_expression, + STATE(963), 1, + sym_string, + STATE(1213), 1, + sym_list_splat_pattern, + STATE(1800), 1, + sym_expression, + STATE(2646), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(628), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1497), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(737), 2, + sym_ellipsis, + sym_float, + ACTIONS(843), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(733), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1499), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(841), 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(721), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, + STATE(1767), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1190), 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, [44223] = 22, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(318), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(404), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1077), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(971), 1, + STATE(955), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(2068), 1, + STATE(2089), 1, sym_expression, - STATE(2678), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1737), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63111,7 +62901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63129,57 +62919,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [44321] = 22, - ACTIONS(311), 1, + ACTIONS(789), 1, + anon_sym_LPAREN, + ACTIONS(797), 1, + anon_sym_LBRACK, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(807), 1, + sym_string_start, + ACTIONS(825), 1, + anon_sym_not, + ACTIONS(827), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(831), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1157), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(971), 1, + STATE(919), 1, sym_primary_expression, - STATE(1025), 1, + STATE(970), 1, sym_string, - STATE(1325), 1, + STATE(1254), 1, sym_list_splat_pattern, - STATE(1898), 1, + STATE(1697), 1, sym_expression, - STATE(2678), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(817), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(815), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(787), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1689), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63187,7 +62977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63205,22 +62995,22 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [44419] = 10, - ACTIONS(1567), 1, + ACTIONS(1551), 1, anon_sym_COMMA, - ACTIONS(1572), 1, + ACTIONS(1556), 1, anon_sym_COLON_EQ, - ACTIONS(1574), 1, + ACTIONS(1558), 1, anon_sym_COLON, - ACTIONS(1577), 1, + ACTIONS(1561), 1, anon_sym_EQ, - ACTIONS(1579), 1, + ACTIONS(1563), 1, anon_sym_LBRACK, - STATE(2077), 1, + STATE(2097), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 13, + ACTIONS(1565), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63234,7 +63024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1570), 15, + ACTIONS(1554), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63250,7 +63040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 16, + ACTIONS(1549), 16, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63267,18 +63057,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44492] = 7, - ACTIONS(284), 1, + [44492] = 8, + ACTIONS(1505), 1, + anon_sym_else, + ACTIONS(1571), 1, + anon_sym_elif, + STATE(619), 1, + aux_sym_if_statement_repeat1, + STATE(696), 1, + sym_elif_clause, + STATE(738), 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(1569), 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, + [44560] = 7, + ACTIONS(276), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(304), 2, + ACTIONS(296), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(320), 13, + ACTIONS(312), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63292,7 +63142,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(271), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63308,7 +63158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, + ACTIONS(269), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63326,18 +63176,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44558] = 5, - ACTIONS(1587), 1, - anon_sym_except_STAR, + [44626] = 8, + ACTIONS(1493), 1, + anon_sym_else, + ACTIONS(1577), 1, + anon_sym_elif, + STATE(631), 1, + aux_sym_if_statement_repeat1, + STATE(700), 1, + sym_elif_clause, + STATE(774), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(613), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1583), 12, + ACTIONS(1575), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63348,7 +63203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1585), 34, + ACTIONS(1573), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63360,13 +63215,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, @@ -63383,158 +63236,39 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44620] = 8, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1594), 1, - anon_sym_elif, - STATE(629), 1, - aux_sym_if_statement_repeat1, - STATE(722), 1, - sym_elif_clause, - STATE(735), 1, - sym_else_clause, + [44694] = 8, + ACTIONS(276), 1, + anon_sym_COMMA, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(286), 1, + anon_sym_COLON, + ACTIONS(296), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1592), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(312), 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(271), 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_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1590), 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, - [44688] = 8, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1600), 1, - anon_sym_elif, - STATE(622), 1, - aux_sym_if_statement_repeat1, - STATE(719), 1, - sym_elif_clause, - STATE(781), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1596), 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(1598), 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, - [44756] = 7, - ACTIONS(1567), 1, - anon_sym_COMMA, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1577), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1581), 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(1570), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -63544,7 +63278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 17, + ACTIONS(269), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63562,19 +63296,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44822] = 8, - ACTIONS(284), 1, + [44762] = 8, + ACTIONS(276), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_COLON_EQ, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_COLON, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(320), 13, + ACTIONS(312), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63588,7 +63322,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(271), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63604,7 +63338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, + ACTIONS(269), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63622,21 +63356,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44890] = 8, - ACTIONS(1557), 1, + [44830] = 8, + ACTIONS(1493), 1, anon_sym_else, - ACTIONS(1594), 1, + ACTIONS(1577), 1, anon_sym_elif, - STATE(619), 1, + STATE(614), 1, aux_sym_if_statement_repeat1, - STATE(722), 1, + STATE(700), 1, sym_elif_clause, - STATE(818), 1, + STATE(778), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1596), 12, + ACTIONS(1567), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63649,7 +63383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1598), 32, + ACTIONS(1569), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63682,21 +63416,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44958] = 8, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1594), 1, - anon_sym_elif, - STATE(629), 1, - aux_sym_if_statement_repeat1, - STATE(722), 1, - sym_elif_clause, - STATE(754), 1, - sym_else_clause, + [44898] = 5, + ACTIONS(1583), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1604), 12, + STATE(612), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1581), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63709,7 +63438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1602), 32, + ACTIONS(1579), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63721,11 +63450,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, @@ -63742,21 +63473,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45026] = 8, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1594), 1, - anon_sym_elif, - STATE(614), 1, - aux_sym_if_statement_repeat1, - STATE(722), 1, - sym_elif_clause, - STATE(757), 1, - sym_else_clause, + [44960] = 5, + ACTIONS(1590), 1, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1608), 12, + STATE(613), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1588), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63769,7 +63495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1606), 32, + ACTIONS(1586), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63781,11 +63507,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, @@ -63802,81 +63530,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45094] = 8, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(304), 1, - anon_sym_EQ, + [45022] = 8, + ACTIONS(1493), 1, + anon_sym_else, + ACTIONS(1577), 1, + anon_sym_elif, + STATE(631), 1, + aux_sym_if_statement_repeat1, + STATE(700), 1, + sym_elif_clause, + STATE(747), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(320), 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, + ACTIONS(1595), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + 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(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1593), 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_in, - anon_sym_LBRACK, + 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_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, - [45162] = 8, - ACTIONS(1501), 1, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45090] = 8, + ACTIONS(1505), 1, anon_sym_else, - ACTIONS(1600), 1, + ACTIONS(1571), 1, anon_sym_elif, - STATE(638), 1, + STATE(637), 1, aux_sym_if_statement_repeat1, - STATE(719), 1, + STATE(696), 1, sym_elif_clause, - STATE(843), 1, + STATE(734), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1604), 12, + ACTIONS(1575), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63889,7 +63617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1602), 32, + ACTIONS(1573), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63922,21 +63650,73 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45230] = 8, - ACTIONS(1501), 1, + [45158] = 5, + ACTIONS(1597), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(616), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1581), 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(1579), 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_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, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45220] = 5, ACTIONS(1600), 1, - anon_sym_elif, - STATE(625), 1, - aux_sym_if_statement_repeat1, - STATE(719), 1, - sym_elif_clause, - STATE(845), 1, - sym_else_clause, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1608), 12, + STATE(617), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1588), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63949,7 +63729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1606), 32, + ACTIONS(1586), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63961,11 +63741,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, @@ -63982,18 +63764,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45298] = 7, - ACTIONS(284), 1, + [45282] = 7, + ACTIONS(1551), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(1556), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(304), 2, + ACTIONS(1561), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(320), 13, + ACTIONS(1565), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64007,7 +63789,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(1554), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64023,7 +63805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, + ACTIONS(1549), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64041,21 +63823,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45364] = 8, - ACTIONS(1501), 1, + [45348] = 8, + ACTIONS(1505), 1, anon_sym_else, - ACTIONS(1600), 1, + ACTIONS(1571), 1, anon_sym_elif, - STATE(638), 1, + STATE(637), 1, aux_sym_if_statement_repeat1, - STATE(719), 1, + STATE(696), 1, sym_elif_clause, - STATE(738), 1, + STATE(767), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1592), 12, + ACTIONS(1595), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -64068,7 +63850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1590), 32, + ACTIONS(1593), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64101,16 +63883,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45432] = 5, - ACTIONS(1614), 1, - anon_sym_except, + [45416] = 8, + ACTIONS(1505), 1, + anon_sym_else, + ACTIONS(1571), 1, + anon_sym_elif, + STATE(615), 1, + aux_sym_if_statement_repeat1, + STATE(696), 1, + sym_elif_clause, + STATE(776), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1610), 12, + ACTIONS(1603), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -64123,7 +63910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1612), 34, + ACTIONS(1605), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64135,13 +63922,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, @@ -64158,73 +63943,80 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45494] = 5, - ACTIONS(1617), 1, - anon_sym_except, + [45484] = 7, + ACTIONS(276), 1, + anon_sym_COMMA, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(627), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1610), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(296), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(312), 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(271), 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, - sym_ellipsis, - sym_float, - ACTIONS(1612), 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_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(269), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, 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_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45556] = 5, - ACTIONS(1620), 1, - anon_sym_except_STAR, + 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, + [45550] = 8, + ACTIONS(1493), 1, + anon_sym_else, + ACTIONS(1577), 1, + anon_sym_elif, + STATE(608), 1, + aux_sym_if_statement_repeat1, + STATE(700), 1, + sym_elif_clause, + STATE(749), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(628), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1583), 12, + ACTIONS(1603), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -64237,7 +64029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1585), 34, + ACTIONS(1605), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64249,13 +64041,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, @@ -64272,17 +64062,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45618] = 6, - ACTIONS(1627), 1, - anon_sym_elif, - STATE(629), 1, - aux_sym_if_statement_repeat1, - STATE(722), 1, - sym_elif_clause, + [45618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 12, + ACTIONS(1609), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -64295,7 +64079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1623), 33, + ACTIONS(1607), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64307,12 +64091,15 @@ 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, @@ -64329,16 +64116,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45681] = 6, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(1639), 1, + [45675] = 6, + ACTIONS(1618), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 14, + ACTIONS(1613), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1620), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64352,7 +64139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1635), 15, + ACTIONS(1616), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64368,7 +64155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 17, + ACTIONS(1611), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64386,22 +64173,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45744] = 5, + [45738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 3, - anon_sym_DOT, + ACTIONS(1622), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(669), 13, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1624), 36, + 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_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, + 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, + [45795] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1628), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64412,14 +64246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 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, @@ -64442,25 +64281,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45805] = 5, + [45852] = 7, + ACTIONS(1642), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 3, + ACTIONS(1632), 2, anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1634), 2, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(669), 13, + ACTIONS(1640), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1637), 12, 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, @@ -64468,13 +64310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 29, + ACTIONS(1630), 28, 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, @@ -64498,32 +64339,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45866] = 6, - ACTIONS(1639), 1, - anon_sym_EQ, + [45917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1637), 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(1635), 15, + ACTIONS(1644), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1646), 36, + 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_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, + 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, + [45974] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1648), 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(1650), 36, + 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_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, + 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, + [46031] = 6, + ACTIONS(1613), 1, + anon_sym_COMMA, + ACTIONS(1618), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1620), 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(1616), 15, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, @@ -64537,7 +64486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 17, + ACTIONS(1611), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64555,15 +64504,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45929] = 3, + [46094] = 6, + ACTIONS(1656), 1, + anon_sym_elif, + STATE(631), 1, + aux_sym_if_statement_repeat1, + STATE(700), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1654), 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(1652), 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, + [46157] = 6, + ACTIONS(1561), 1, + anon_sym_EQ, + ACTIONS(1661), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 16, + ACTIONS(1565), 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(1664), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64576,15 +64600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 32, + ACTIONS(1659), 17, 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, @@ -64596,24 +64618,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - [45986] = 3, + [46220] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 16, + ACTIONS(1668), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64630,7 +64639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 32, + ACTIONS(1666), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64663,11 +64672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46043] = 3, + [46277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 16, + ACTIONS(1672), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64684,7 +64693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 32, + ACTIONS(1670), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64717,11 +64726,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46100] = 3, + [46334] = 6, + ACTIONS(1551), 1, + anon_sym_COMMA, + ACTIONS(1561), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1565), 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(1554), 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(1549), 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, + [46397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 16, + ACTIONS(1672), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64738,7 +64804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 32, + ACTIONS(1670), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64771,17 +64837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46157] = 6, - ACTIONS(1649), 1, + [46454] = 6, + ACTIONS(1674), 1, anon_sym_elif, - STATE(638), 1, + STATE(637), 1, aux_sym_if_statement_repeat1, - STATE(719), 1, + STATE(696), 1, sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 12, + ACTIONS(1654), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -64794,7 +64860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1623), 33, + ACTIONS(1652), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64828,22 +64894,123 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46220] = 5, + [46517] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 3, - anon_sym_DOT, + ACTIONS(1648), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1660), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1657), 13, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1650), 36, + 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_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, + 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, + [46574] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1644), 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(1646), 36, + 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_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, + 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, + [46631] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1679), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64854,14 +65021,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1677), 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, @@ -64884,33 +65056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46281] = 6, - ACTIONS(1577), 1, - anon_sym_EQ, + [46688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1581), 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(1667), 15, + ACTIONS(1679), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64923,13 +65077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 17, + ACTIONS(1677), 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, @@ -64941,16 +65097,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46344] = 6, - ACTIONS(1577), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1581), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64964,45 +65110,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1570), 15, + [46745] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1681), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + 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(1565), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1683), 36, + 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_in, - anon_sym_LBRACK, + 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, + 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, - [46407] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46802] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 16, + ACTIONS(1687), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65019,7 +65185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 32, + ACTIONS(1685), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65052,74 +65218,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46464] = 7, - ACTIONS(1675), 1, - anon_sym_PIPE, + [46859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 2, + ACTIONS(1681), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1673), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1660), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1657), 12, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + 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, - ACTIONS(1652), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1683), 36, + 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_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, - [46529] = 6, - ACTIONS(1684), 1, + 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, + 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, + [46916] = 6, + ACTIONS(1691), 1, + anon_sym_COMMA, + ACTIONS(1698), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, - anon_sym_COMMA, + ACTIONS(1696), 14, anon_sym_COLON, - ACTIONS(1686), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65133,7 +65295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1682), 15, + ACTIONS(1694), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65149,7 +65311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 17, + ACTIONS(1689), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65167,16 +65329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46592] = 6, - ACTIONS(1577), 1, + [46979] = 6, + ACTIONS(1561), 1, anon_sym_EQ, - ACTIONS(1664), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 14, + ACTIONS(1661), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1565), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65190,7 +65352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1667), 15, + ACTIONS(1664), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65206,7 +65368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 17, + ACTIONS(1659), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65224,16 +65386,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46655] = 6, - ACTIONS(1567), 1, - anon_sym_COMMA, - ACTIONS(1577), 1, - anon_sym_EQ, + [47042] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 14, + ACTIONS(1622), 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(1624), 36, + 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_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, + 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, + [47099] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 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(1607), 36, + 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_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, + 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, + [47156] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(658), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(694), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(653), 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(651), 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, @@ -65247,7 +65550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1570), 15, + [47217] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(658), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(694), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(653), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65261,17 +65576,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(1565), 17, + ACTIONS(651), 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, @@ -65281,16 +65593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46718] = 6, - ACTIONS(1679), 1, - anon_sym_COMMA, - ACTIONS(1684), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1686), 14, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65304,7 +65606,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1682), 15, + [47278] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1634), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1640), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1637), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65318,17 +65632,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(1677), 17, + ACTIONS(1630), 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, @@ -65338,15 +65649,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46781] = 3, + 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, + [47339] = 6, + ACTIONS(1561), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 16, + ACTIONS(1551), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1565), 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(1554), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65359,15 +65701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 32, + ACTIONS(1549), 17, 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, @@ -65379,6 +65719,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + [47402] = 6, + ACTIONS(1698), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1691), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1696), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65392,15 +65742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46838] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1694), 16, + ACTIONS(1694), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65413,15 +65758,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 32, + ACTIONS(1689), 17, 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, @@ -65433,24 +65776,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - [46895] = 3, + [47465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 13, + ACTIONS(1648), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -65464,7 +65794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 34, + ACTIONS(1650), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65499,15 +65829,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46951] = 3, + [47521] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1622), 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, @@ -65516,7 +65847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1624), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65534,7 +65865,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, @@ -65552,82 +65882,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47007] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1708), 1, - anon_sym_STAR, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1716), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1584), 1, - sym_list_splat_pattern, - STATE(1632), 1, - sym_primary_expression, - STATE(2088), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1712), 2, - anon_sym_match, - anon_sym_type, - STATE(1585), 2, - sym_attribute, - sym_subscript, - STATE(2122), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1710), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(995), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1311), 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, - [47099] = 3, + [47577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1702), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65640,7 +65899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65676,16 +65935,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47155] = 3, + [47633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 13, + ACTIONS(1706), 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, @@ -65694,7 +65952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 34, + ACTIONS(1704), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65712,6 +65970,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, @@ -65729,15 +65988,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47211] = 3, + [47689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1710), 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, @@ -65746,7 +66006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1708), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65758,7 +66018,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, @@ -65782,15 +66041,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47267] = 3, + [47745] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(1644), 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, @@ -65799,7 +66059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1646), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65817,7 +66077,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, @@ -65835,13 +66094,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47323] = 3, + [47801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 13, - sym__dedent, + ACTIONS(1712), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -65853,7 +66112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 34, + ACTIONS(1714), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65888,64 +66147,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47379] = 3, + [47857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 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(1726), 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_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, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47435] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1732), 13, + ACTIONS(1681), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65959,7 +66165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 34, + ACTIONS(1683), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65994,16 +66200,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47491] = 3, + [47913] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1736), 13, + ACTIONS(1718), 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, @@ -66012,7 +66217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1734), 34, + ACTIONS(1716), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66030,6 +66235,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, @@ -66047,11 +66253,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47547] = 3, + [47969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 13, + ACTIONS(1722), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66065,7 +66271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1738), 34, + ACTIONS(1720), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66100,11 +66306,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47603] = 3, + [48025] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 13, + ACTIONS(1609), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66118,7 +66324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 34, + ACTIONS(1607), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66153,13 +66359,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47659] = 3, + [48081] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1726), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66182,13 +66388,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, @@ -66206,11 +66412,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47715] = 3, + [48137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 13, + ACTIONS(1712), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66224,7 +66430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 34, + ACTIONS(1714), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66259,11 +66465,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47771] = 3, + [48193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1742), 12, + ACTIONS(1702), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66276,7 +66482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1744), 35, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66312,64 +66518,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47827] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1720), 12, - sym__dedent, + [48249] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, + ACTIONS(1728), 1, + sym_identifier, + ACTIONS(1730), 1, anon_sym_LPAREN, + ACTIONS(1732), 1, anon_sym_STAR, + ACTIONS(1738), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1740), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1567), 1, + sym_list_splat_pattern, + STATE(1617), 1, + sym_primary_expression, + STATE(2090), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1736), 2, + anon_sym_match, + anon_sym_type, + STATE(1568), 2, + sym_attribute, + sym_subscript, + STATE(2054), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, 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, + ACTIONS(1734), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [47883] = 3, + ACTIONS(979), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1392), 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, + [48341] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, + ACTIONS(1742), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66382,7 +66606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1744), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66394,13 +66618,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, @@ -66418,16 +66642,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47939] = 3, + [48397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 13, + ACTIONS(1746), 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, @@ -66436,7 +66659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 34, + ACTIONS(1748), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66454,6 +66677,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, @@ -66471,11 +66695,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47995] = 3, + [48453] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 13, + ACTIONS(1750), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66489,7 +66713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1738), 34, + ACTIONS(1752), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66524,15 +66748,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48051] = 3, + [48509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1622), 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, @@ -66541,7 +66766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1624), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66559,7 +66784,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, @@ -66577,66 +66801,84 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48107] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1746), 12, + [48565] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1728), 1, + sym_identifier, + ACTIONS(1730), 1, anon_sym_LPAREN, + ACTIONS(1732), 1, anon_sym_STAR, + ACTIONS(1738), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1740), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1567), 1, + sym_list_splat_pattern, + STATE(1617), 1, + sym_primary_expression, + STATE(2090), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1736), 2, + anon_sym_match, + anon_sym_type, + STATE(1568), 2, + sym_attribute, + sym_subscript, + STATE(2054), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1748), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(1734), 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_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, + ACTIONS(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [48163] = 3, + ACTIONS(965), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1392), 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, + [48657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1742), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66647,7 +66889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1744), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66683,13 +66925,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48219] = 3, + [48713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 12, + ACTIONS(1746), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66700,7 +66942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1752), 35, + ACTIONS(1748), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66736,13 +66978,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48275] = 3, + [48769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, - sym__dedent, + ACTIONS(1706), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66753,7 +66995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1704), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66765,13 +67007,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, @@ -66789,15 +67031,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48331] = 3, + [48825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, - sym__dedent, + ACTIONS(1710), 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, @@ -66806,7 +67049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 35, + ACTIONS(1708), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66824,7 +67067,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, @@ -66842,11 +67084,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48387] = 3, + [48881] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1758), 13, + ACTIONS(1609), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66860,7 +67102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1760), 34, + ACTIONS(1607), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66895,15 +67137,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48443] = 3, + [48937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1648), 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, @@ -66912,7 +67155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1650), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66930,7 +67173,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, @@ -66948,11 +67190,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48499] = 3, + [48993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, + ACTIONS(1726), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66965,7 +67207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 35, + ACTIONS(1724), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67001,13 +67243,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48555] = 3, + [49049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1762), 13, + ACTIONS(1750), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67019,7 +67261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1764), 34, + ACTIONS(1752), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67054,16 +67296,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48611] = 3, + [49105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1736), 13, + ACTIONS(1718), 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, @@ -67072,7 +67313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1734), 34, + ACTIONS(1716), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67090,6 +67331,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, @@ -67107,13 +67349,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48667] = 3, + [49161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1762), 13, - sym__dedent, + ACTIONS(1722), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67125,7 +67367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1764), 34, + ACTIONS(1720), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67160,15 +67402,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48723] = 3, + [49217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1644), 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, @@ -67177,7 +67420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1646), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67189,7 +67432,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, @@ -67213,15 +67455,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48779] = 3, + [49273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, - sym__dedent, + ACTIONS(1681), 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, @@ -67230,7 +67473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1683), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67248,7 +67491,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, @@ -67266,11 +67508,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48835] = 3, + [49329] = 5, + ACTIONS(1493), 1, + anon_sym_else, + STATE(816), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1756), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67283,7 +67529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1754), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67295,14 +67541,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_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67319,87 +67562,175 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48891] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + [49388] = 5, + ACTIONS(1497), 1, + anon_sym_finally, + STATE(798), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1760), 12, + sym__dedent, sym_string_start, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1706), 1, anon_sym_LPAREN, - ACTIONS(1708), 1, anon_sym_STAR, - ACTIONS(1714), 1, anon_sym_LBRACK, - ACTIONS(1716), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1758), 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, - STATE(1025), 1, - sym_string, - STATE(1584), 1, - sym_list_splat_pattern, - STATE(1632), 1, - sym_primary_expression, - STATE(2088), 1, - sym_pattern, + sym_true, + sym_false, + sym_none, + [49447] = 5, + ACTIONS(1493), 1, + anon_sym_else, + STATE(765), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(1764), 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(1712), 2, + ACTIONS(1762), 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, - STATE(1585), 2, - sym_attribute, - sym_subscript, - STATE(2122), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + 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, + [49506] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1768), 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(1710), 3, + sym_ellipsis, + sym_float, + ACTIONS(1766), 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_elif, + 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, - ACTIONS(324), 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, - ACTIONS(981), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1311), 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, - [48983] = 3, + [49561] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1758), 13, - sym__dedent, + ACTIONS(1768), 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, @@ -67408,7 +67739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1760), 34, + ACTIONS(1766), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67420,13 +67751,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_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67443,11 +67774,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49039] = 3, + [49616] = 5, + ACTIONS(1493), 1, + anon_sym_else, + STATE(722), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 12, + ACTIONS(1772), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67460,7 +67795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1752), 35, + ACTIONS(1770), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67472,14 +67807,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_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67496,16 +67828,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49095] = 3, + [49675] = 5, + ACTIONS(1505), 1, + anon_sym_else, + STATE(808), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 13, + ACTIONS(1774), 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, @@ -67514,7 +67849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 34, + ACTIONS(1776), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67526,13 +67861,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, @@ -67549,13 +67882,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49151] = 3, + [49734] = 5, + ACTIONS(1505), 1, + anon_sym_else, + STATE(773), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, - sym__dedent, + ACTIONS(1764), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67566,7 +67903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1762), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67578,14 +67915,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_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67602,11 +67936,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49207] = 3, + [49793] = 5, + ACTIONS(1493), 1, + anon_sym_else, + STATE(729), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1742), 12, + ACTIONS(1774), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67619,7 +67957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1744), 35, + ACTIONS(1776), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67631,14 +67969,65 @@ 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_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, + [49852] = 5, + ACTIONS(1509), 1, anon_sym_finally, + STATE(780), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1760), 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(1758), 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, @@ -67655,11 +68044,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49263] = 3, + [49911] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, + ACTIONS(1778), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67672,7 +68061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1780), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67684,14 +68073,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, anon_sym_global, @@ -67708,11 +68096,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49319] = 3, + [49966] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(1782), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67725,7 +68113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1784), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67737,14 +68125,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, anon_sym_global, @@ -67761,16 +68148,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49375] = 3, + [50021] = 5, + ACTIONS(1509), 1, + anon_sym_finally, + STATE(755), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 13, + ACTIONS(1786), 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, @@ -67779,7 +68169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 34, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67791,13 +68181,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, @@ -67814,11 +68202,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49431] = 3, + [50080] = 5, + ACTIONS(1493), 1, + anon_sym_else, + STATE(825), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1792), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67831,7 +68223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1790), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67843,14 +68235,11 @@ 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_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67867,11 +68256,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49487] = 3, + [50139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1778), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67884,7 +68273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1780), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67896,14 +68285,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, anon_sym_global, @@ -67920,16 +68308,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49543] = 3, + [50194] = 5, + ACTIONS(1505), 1, + anon_sym_else, + STATE(792), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 13, - sym__dedent, + ACTIONS(1792), 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, @@ -67938,7 +68329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 34, + ACTIONS(1790), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67950,13 +68341,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, @@ -67973,13 +68362,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49599] = 3, + [50253] = 5, + ACTIONS(1505), 1, + anon_sym_else, + STATE(748), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, - sym__dedent, + ACTIONS(1756), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67990,7 +68383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1754), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68002,14 +68395,11 @@ 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_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68026,13 +68416,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49655] = 3, + [50312] = 5, + ACTIONS(1505), 1, + anon_sym_else, + STATE(797), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1746), 12, - sym__dedent, + ACTIONS(1772), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68043,7 +68437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1748), 35, + ACTIONS(1770), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68055,14 +68449,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_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68079,11 +68470,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49711] = 3, + [50371] = 5, + ACTIONS(1497), 1, + anon_sym_finally, + STATE(834), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1786), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68096,7 +68491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1766), 35, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68108,14 +68503,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_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68132,13 +68524,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49767] = 3, + [50430] = 5, + ACTIONS(1505), 1, + anon_sym_else, + STATE(801), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, - sym__dedent, + ACTIONS(1794), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68149,7 +68545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1796), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68161,14 +68557,11 @@ 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_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68185,13 +68578,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49823] = 3, + [50489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1782), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68202,7 +68595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1766), 35, + ACTIONS(1784), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68214,14 +68607,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, anon_sym_global, @@ -68238,11 +68630,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49879] = 3, + [50544] = 5, + ACTIONS(1493), 1, + anon_sym_else, + STATE(737), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1794), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68255,7 +68651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 34, + ACTIONS(1796), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68267,8 +68663,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, @@ -68290,17 +68684,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49934] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(751), 1, - sym_else_clause, + [50603] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1776), 12, - sym__dedent, + ACTIONS(1798), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68311,7 +68701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1800), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68328,6 +68718,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, @@ -68344,71 +68735,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49993] = 5, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(759), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1780), 12, - sym__dedent, + [50657] = 22, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, + ACTIONS(1802), 1, + sym_identifier, + ACTIONS(1804), 1, anon_sym_LPAREN, + ACTIONS(1806), 1, + anon_sym_RPAREN, + ACTIONS(1808), 1, anon_sym_STAR, + ACTIONS(1814), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1816), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1601), 1, + sym_list_splat_pattern, + STATE(1611), 1, + sym_primary_expression, + STATE(2404), 1, + sym_pattern, + STATE(2629), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1812), 2, + anon_sym_match, + anon_sym_type, + STATE(1583), 2, + sym_attribute, + sym_subscript, + STATE(2537), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1778), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1810), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [50052] = 5, - ACTIONS(1501), 1, - anon_sym_else, - STATE(744), 1, - sym_else_clause, + STATE(1392), 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, + [50749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1776), 12, + ACTIONS(1798), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68419,7 +68822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1800), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68436,6 +68839,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, @@ -68452,71 +68856,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50111] = 5, - ACTIONS(1501), 1, - anon_sym_else, - STATE(739), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1782), 12, + [50803] = 22, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1802), 1, + sym_identifier, + ACTIONS(1804), 1, anon_sym_LPAREN, + ACTIONS(1808), 1, anon_sym_STAR, + ACTIONS(1814), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1816), 1, + anon_sym_await, + ACTIONS(1818), 1, + anon_sym_RPAREN, + STATE(1003), 1, + sym_string, + STATE(1601), 1, + sym_list_splat_pattern, + STATE(1611), 1, + sym_primary_expression, + STATE(2404), 1, + sym_pattern, + STATE(2729), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1812), 2, + anon_sym_match, + anon_sym_type, + STATE(1583), 2, + sym_attribute, + sym_subscript, + STATE(2537), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1784), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1810), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [50170] = 5, - ACTIONS(1505), 1, - anon_sym_finally, - STATE(748), 1, - sym_finally_clause, + STATE(1392), 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, + [50895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1822), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68527,7 +68943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1820), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68544,6 +68960,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, @@ -68560,17 +68977,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50229] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(790), 1, - sym_else_clause, + [50949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, - sym__dedent, + ACTIONS(1822), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68581,7 +68994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1786), 32, + ACTIONS(1820), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68598,6 +69011,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, @@ -68614,17 +69028,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50288] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(782), 1, - sym_else_clause, + [51003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, - sym__dedent, + ACTIONS(1824), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68635,7 +69045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1826), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68668,15 +69078,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50347] = 5, - ACTIONS(1505), 1, - anon_sym_finally, - STATE(787), 1, - sym_finally_clause, + [51056] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1828), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68689,7 +69095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1830), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68722,17 +69128,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50406] = 5, - ACTIONS(1501), 1, - anon_sym_else, - STATE(765), 1, - sym_else_clause, + [51109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, + ACTIONS(1834), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68743,7 +69145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1832), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68776,15 +69178,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50465] = 5, - ACTIONS(1501), 1, - anon_sym_else, - STATE(770), 1, - sym_else_clause, + [51162] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, + ACTIONS(1836), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68797,7 +69195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1786), 32, + ACTIONS(1838), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68830,11 +69228,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50524] = 3, + [51215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1840), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68847,7 +69245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 34, + ACTIONS(1842), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68859,8 +69257,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, @@ -68882,15 +69278,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50579] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(838), 1, - sym_else_clause, + [51268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, + ACTIONS(1846), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68903,7 +69295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 32, + ACTIONS(1844), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68936,65 +69328,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50638] = 5, - ACTIONS(1501), 1, - anon_sym_else, - STATE(777), 1, - sym_else_clause, + [51321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1802), 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(1804), 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, - [50697] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1848), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69007,7 +69345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 34, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69019,8 +69357,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, @@ -69042,11 +69378,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50752] = 3, + [51374] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1854), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69059,7 +69395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 34, + ACTIONS(1852), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69071,8 +69407,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, @@ -69094,15 +69428,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50807] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(805), 1, - sym_else_clause, + [51427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1802), 12, + ACTIONS(1858), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69115,7 +69445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1804), 32, + ACTIONS(1856), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69148,13 +69478,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50866] = 3, + [51480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1806), 12, + ACTIONS(1862), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69165,7 +69495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1808), 34, + ACTIONS(1860), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69177,8 +69507,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, @@ -69200,15 +69528,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50921] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(825), 1, - sym_else_clause, + [51533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1866), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69221,7 +69545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1810), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69254,17 +69578,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50980] = 5, - ACTIONS(1501), 1, - anon_sym_else, - STATE(736), 1, - sym_else_clause, + [51586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1870), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69275,7 +69595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1810), 32, + ACTIONS(1868), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69308,11 +69628,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51039] = 3, + [51639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1806), 12, + ACTIONS(1874), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69325,7 +69645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1808), 34, + ACTIONS(1872), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69337,8 +69657,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, @@ -69360,15 +69678,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51094] = 5, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(847), 1, - sym_finally_clause, + [51692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1878), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69381,7 +69695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1876), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69414,13 +69728,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51153] = 3, + [51745] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1836), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69431,7 +69745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 33, + ACTIONS(1838), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69448,7 +69762,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, @@ -69465,11 +69778,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51207] = 3, + [51798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1882), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69482,7 +69795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 33, + ACTIONS(1880), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69499,7 +69812,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, @@ -69516,11 +69828,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51261] = 3, + [51851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1820), 12, + ACTIONS(1760), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69533,7 +69845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1818), 33, + ACTIONS(1758), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69550,7 +69862,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, @@ -69567,153 +69878,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51315] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1822), 1, - sym_identifier, - ACTIONS(1824), 1, - anon_sym_LPAREN, - ACTIONS(1826), 1, - anon_sym_RPAREN, - ACTIONS(1828), 1, - anon_sym_STAR, - ACTIONS(1834), 1, - anon_sym_LBRACK, - ACTIONS(1836), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, - sym_primary_expression, - STATE(2424), 1, - sym_pattern, - STATE(2773), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1832), 2, - anon_sym_match, - anon_sym_type, - STATE(1607), 2, - sym_attribute, - sym_subscript, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1830), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [51407] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1822), 1, - sym_identifier, - ACTIONS(1824), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_STAR, - ACTIONS(1834), 1, - anon_sym_LBRACK, - ACTIONS(1836), 1, - anon_sym_await, - ACTIONS(1838), 1, - anon_sym_RPAREN, - STATE(1025), 1, - sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, - sym_primary_expression, - STATE(2424), 1, - sym_pattern, - STATE(2694), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1832), 2, - anon_sym_match, - anon_sym_type, - STATE(1607), 2, - sym_attribute, - sym_subscript, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1830), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [51499] = 3, + [51904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1820), 12, + ACTIONS(1886), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69724,7 +69895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1818), 33, + ACTIONS(1884), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69741,7 +69912,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, @@ -69758,13 +69928,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51553] = 3, + [51957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1840), 12, + ACTIONS(1890), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69775,7 +69945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1842), 32, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69808,13 +69978,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51606] = 3, + [52010] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1844), 12, + ACTIONS(1894), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69825,7 +69995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1846), 32, + ACTIONS(1892), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69858,11 +70028,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51659] = 3, + [52063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(1896), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69875,7 +70045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1898), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69908,13 +70078,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51712] = 3, + [52116] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, + ACTIONS(1902), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69925,7 +70095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1854), 32, + ACTIONS(1900), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69958,11 +70128,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51765] = 3, + [52169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, + ACTIONS(1906), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69975,7 +70145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(1904), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70008,11 +70178,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51818] = 3, + [52222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1910), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70025,7 +70195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1860), 32, + ACTIONS(1908), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70058,11 +70228,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51871] = 3, + [52275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1864), 12, + ACTIONS(1912), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70075,7 +70245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1866), 32, + ACTIONS(1914), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70108,13 +70278,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51924] = 3, + [52328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1868), 12, + ACTIONS(1918), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70125,7 +70295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1870), 32, + ACTIONS(1916), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70158,13 +70328,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51977] = 3, + [52381] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1922), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70175,7 +70345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1860), 32, + ACTIONS(1920), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70208,13 +70378,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52030] = 3, + [52434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1872), 12, + ACTIONS(1926), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70225,7 +70395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1874), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70258,11 +70428,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52083] = 3, + [52487] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1876), 12, + ACTIONS(1928), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70275,7 +70445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1878), 32, + ACTIONS(1930), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70308,11 +70478,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52136] = 3, + [52540] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1932), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70325,7 +70495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1934), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70358,79 +70528,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52189] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2279), 1, - sym_pattern, - STATE(2795), 1, - sym_pattern_list, + [52593] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [52278] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1892), 12, + ACTIONS(1936), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70443,7 +70545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1894), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70476,11 +70578,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52331] = 3, + [52646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1896), 12, + ACTIONS(1940), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70493,7 +70595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1898), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70526,11 +70628,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52384] = 3, + [52699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1876), 12, + ACTIONS(1946), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70543,7 +70645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1878), 32, + ACTIONS(1944), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70576,11 +70678,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52437] = 3, + [52752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1892), 12, + ACTIONS(1950), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70593,7 +70695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1894), 32, + ACTIONS(1948), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70626,11 +70728,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52490] = 3, + [52805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1900), 12, + ACTIONS(1952), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70643,7 +70745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1902), 32, + ACTIONS(1954), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70676,13 +70778,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52543] = 3, + [52858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, + ACTIONS(1958), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70693,7 +70795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1906), 32, + ACTIONS(1956), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70726,13 +70828,149 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52596] = 3, + [52911] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(1802), 1, + sym_identifier, + ACTIONS(1804), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1814), 1, + anon_sym_LBRACK, + ACTIONS(1816), 1, + anon_sym_await, + ACTIONS(1960), 1, + anon_sym_RPAREN, + STATE(1003), 1, + sym_string, + STATE(1601), 1, + sym_list_splat_pattern, + STATE(1611), 1, + sym_primary_expression, + STATE(2576), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1908), 12, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1812), 2, + anon_sym_match, + anon_sym_type, + STATE(1583), 2, + sym_attribute, + sym_subscript, + STATE(2537), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1810), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1392), 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, + [53000] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, + anon_sym_LBRACK, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1594), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(2279), 1, + sym_pattern, + STATE(2753), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1968), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1966), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1392), 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, + [53089] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1976), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70743,7 +70981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1910), 32, + ACTIONS(1974), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70776,13 +71014,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52649] = 3, + [53142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, + ACTIONS(1840), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70793,7 +71031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1914), 32, + ACTIONS(1842), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70826,13 +71064,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52702] = 3, + [53195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1896), 12, - sym__dedent, + ACTIONS(1978), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70843,7 +71081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1898), 32, + ACTIONS(1980), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70876,11 +71114,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52755] = 3, + [53248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, + ACTIONS(1982), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70893,7 +71131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1984), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70926,11 +71164,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52808] = 3, + [53301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1988), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70943,7 +71181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1986), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70976,13 +71214,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52861] = 3, + [53354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, - sym__dedent, + ACTIONS(1760), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70993,7 +71231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1920), 32, + ACTIONS(1758), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71026,11 +71264,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52914] = 3, + [53407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1497), 12, + ACTIONS(1886), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71043,7 +71281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1499), 32, + ACTIONS(1884), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71076,13 +71314,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52967] = 3, + [53460] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1926), 12, - sym__dedent, + ACTIONS(1902), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71093,7 +71331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(1900), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71126,13 +71364,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53020] = 3, + [53513] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, - sym__dedent, + ACTIONS(1906), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71143,7 +71381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1928), 32, + ACTIONS(1904), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71176,13 +71414,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53073] = 3, + [53566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1900), 12, - sym__dedent, + ACTIONS(1918), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71193,7 +71431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1902), 32, + ACTIONS(1916), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71226,13 +71464,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53126] = 3, + [53619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, - sym__dedent, + ACTIONS(1990), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71243,7 +71481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1906), 32, + ACTIONS(1992), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71276,13 +71514,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53179] = 3, + [53672] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1908), 12, - sym__dedent, + ACTIONS(1946), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71293,7 +71531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1910), 32, + ACTIONS(1944), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71326,11 +71564,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53232] = 3, + [53725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, + ACTIONS(1828), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71343,7 +71581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1914), 32, + ACTIONS(1830), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71376,11 +71614,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53285] = 3, + [53778] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, + ACTIONS(1996), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71393,7 +71631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1994), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71426,13 +71664,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53338] = 3, + [53831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1938), 12, - sym__dedent, + ACTIONS(1998), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71443,7 +71681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1936), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71476,13 +71714,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53391] = 3, + [53884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, - sym__dedent, + ACTIONS(1950), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71493,7 +71731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1948), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71526,13 +71764,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53444] = 3, + [53937] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, + anon_sym_LBRACK, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1594), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(2406), 1, + sym_pattern, + STATE(2704), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1968), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1966), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1392), 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, + [54026] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1848), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71543,7 +71849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71576,111 +71882,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53497] = 3, + [54079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1844), 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(1846), 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, - [53550] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1944), 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(1946), 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, - [53603] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1948), 12, + ACTIONS(1976), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71693,7 +71899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1950), 32, + ACTIONS(1974), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71726,60 +71932,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53656] = 21, - ACTIONS(311), 1, + [54132] = 21, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1822), 1, + ACTIONS(1802), 1, sym_identifier, - ACTIONS(1824), 1, + ACTIONS(1804), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1808), 1, anon_sym_STAR, - ACTIONS(1834), 1, + ACTIONS(1814), 1, anon_sym_LBRACK, - ACTIONS(1836), 1, + ACTIONS(1816), 1, anon_sym_await, - ACTIONS(1952), 1, + ACTIONS(2002), 1, anon_sym_RPAREN, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1606), 1, + STATE(1601), 1, sym_list_splat_pattern, - STATE(1624), 1, + STATE(1611), 1, sym_primary_expression, - STATE(2611), 1, + STATE(2576), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1832), 2, + ACTIONS(1812), 2, anon_sym_match, anon_sym_type, - STATE(1607), 2, + STATE(1583), 2, sym_attribute, sym_subscript, - STATE(2597), 2, + STATE(2537), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1830), 3, + ACTIONS(1810), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -71794,11 +72000,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [53745] = 3, + [54221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(1988), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71811,7 +72017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1986), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71844,79 +72050,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53798] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2293), 1, - sym_pattern, - STATE(2783), 1, - sym_pattern_list, + [54274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [53887] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(1996), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71929,7 +72067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(1994), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71962,13 +72100,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53940] = 3, + [54327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, + ACTIONS(1896), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71979,7 +72117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(1898), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72012,11 +72150,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53993] = 3, + [54380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(1786), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72029,7 +72167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72062,13 +72200,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54046] = 3, + [54433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, - sym__dedent, + ACTIONS(1958), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72079,7 +72217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1854), 32, + ACTIONS(1956), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72112,63 +72250,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54099] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1966), 12, + [54486] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1594), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(2408), 1, + sym_pattern, + STATE(2764), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1968), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1968), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1966), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [54152] = 3, + STATE(1392), 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, + [54575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, + ACTIONS(1912), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72179,7 +72335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(1914), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72212,11 +72368,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54205] = 3, + [54628] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, + ACTIONS(2004), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72229,7 +72385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72262,11 +72418,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54258] = 3, + [54681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1978), 12, + ACTIONS(2008), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72279,7 +72435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1980), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72312,13 +72468,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54311] = 3, + [54734] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, - sym__dedent, + ACTIONS(1491), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72329,7 +72485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(1489), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72362,11 +72518,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54364] = 3, + [54787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, + ACTIONS(2012), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72379,7 +72535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(2014), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72412,13 +72568,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54417] = 3, + [54840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, - sym__dedent, + ACTIONS(2016), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72429,7 +72585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(2018), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72462,13 +72618,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54470] = 3, + [54893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1990), 12, + ACTIONS(2022), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72479,7 +72635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1992), 32, + ACTIONS(2020), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72512,13 +72668,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54523] = 3, + [54946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1994), 12, + ACTIONS(1990), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72529,7 +72685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(1992), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72562,11 +72718,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54576] = 3, + [54999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(2022), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72579,7 +72735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(2020), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72612,13 +72768,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54629] = 3, + [55052] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1944), 12, - sym__dedent, + ACTIONS(2024), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72629,7 +72785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(2026), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72662,163 +72818,149 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54682] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2002), 12, + [55105] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(2002), 1, + anon_sym_RBRACK, + ACTIONS(2028), 1, + sym_identifier, + ACTIONS(2030), 1, anon_sym_LPAREN, + ACTIONS(2032), 1, anon_sym_STAR, + ACTIONS(2038), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2004), 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(2040), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [54735] = 3, + STATE(1003), 1, + sym_string, + STATE(1602), 1, + sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + STATE(2570), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2006), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(2036), 2, + anon_sym_match, + anon_sym_type, + STATE(1603), 2, + sym_attribute, + sym_subscript, + STATE(2561), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2008), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(2034), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [54788] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1948), 12, - sym__dedent, + STATE(1392), 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, + [55194] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1972), 1, + anon_sym_await, + ACTIONS(2042), 1, + anon_sym_in, + STATE(1003), 1, + sym_string, + STATE(1594), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(1628), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1968), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1950), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1966), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [54841] = 3, + STATE(1392), 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, + [55283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, - sym__dedent, + ACTIONS(1846), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72829,7 +72971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1844), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72862,13 +73004,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54894] = 3, + [55336] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 12, + ACTIONS(1928), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72879,7 +73021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2012), 32, + ACTIONS(1930), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72912,11 +73054,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54947] = 3, + [55389] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1553), 12, + ACTIONS(2044), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72929,7 +73071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1555), 32, + ACTIONS(2046), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72962,13 +73104,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55000] = 3, + [55442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, - sym__dedent, + ACTIONS(1862), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72979,7 +73121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2014), 32, + ACTIONS(1860), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73012,11 +73154,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55053] = 3, + [55495] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2018), 12, + ACTIONS(1834), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73029,7 +73171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2020), 32, + ACTIONS(1832), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73062,79 +73204,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55106] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2511), 1, - sym_pattern, - STATE(2804), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [55195] = 3, + [55548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2024), 12, + ACTIONS(2004), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73147,7 +73221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2022), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73180,13 +73254,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55248] = 3, + [55601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, - sym__dedent, + ACTIONS(1854), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73197,7 +73271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(1852), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73230,13 +73304,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55301] = 3, + [55654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, - sym__dedent, + ACTIONS(1858), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73247,7 +73321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(1856), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73280,11 +73354,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55354] = 3, + [55707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2028), 12, + ACTIONS(2008), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73297,7 +73371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2026), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73330,13 +73404,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55407] = 3, + [55760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2030), 12, + ACTIONS(2050), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73347,7 +73421,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, @@ -73380,13 +73454,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55460] = 3, + [55813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 12, - sym__dedent, + ACTIONS(1870), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73397,7 +73471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2034), 32, + ACTIONS(1868), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73430,11 +73504,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55513] = 3, + [55866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, + ACTIONS(1910), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73447,7 +73521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(1908), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73480,13 +73554,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55566] = 3, + [55919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2040), 12, - sym__dedent, + ACTIONS(1874), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73497,7 +73571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2038), 32, + ACTIONS(1872), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73530,79 +73604,111 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55619] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + [55972] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2012), 12, + sym__dedent, sym_string_start, - ACTIONS(2042), 1, - sym_identifier, - ACTIONS(2044), 1, anon_sym_LPAREN, - ACTIONS(2046), 1, anon_sym_STAR, - ACTIONS(2052), 1, anon_sym_LBRACK, - ACTIONS(2054), 1, - anon_sym_RBRACK, - ACTIONS(2056), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1599), 1, - sym_list_splat_pattern, - STATE(1631), 1, - sym_primary_expression, - STATE(2612), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2050), 2, + ACTIONS(2014), 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, - STATE(1600), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + 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, + [56025] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1932), 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(2048), 3, + 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, - ACTIONS(324), 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(1311), 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, - [55708] = 3, + [56078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, + ACTIONS(1936), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73615,7 +73721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73648,11 +73754,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55761] = 3, + [56131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, + ACTIONS(1940), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73665,7 +73771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73698,11 +73804,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55814] = 3, + [56184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2058), 12, + ACTIONS(1786), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73715,7 +73821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2060), 32, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73748,79 +73854,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55867] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - ACTIONS(2062), 1, - anon_sym_in, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(1640), 1, - sym_pattern, + [56237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(1882), 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(1884), 3, + sym_ellipsis, + sym_float, + ACTIONS(1880), 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(324), 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(1311), 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, - [55956] = 3, + [56290] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1926), 12, + ACTIONS(1890), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73833,7 +73921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73866,79 +73954,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56009] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + [56343] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1894), 12, sym_string_start, - ACTIONS(1952), 1, - anon_sym_RBRACK, - ACTIONS(2042), 1, - sym_identifier, - ACTIONS(2044), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2046), 1, anon_sym_STAR, - ACTIONS(2052), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1599), 1, - sym_list_splat_pattern, - STATE(1631), 1, - sym_primary_expression, - STATE(2612), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2050), 2, - anon_sym_match, - anon_sym_type, - STATE(1600), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2048), 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(324), 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(1311), 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, - [56098] = 3, + [56396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, + ACTIONS(2024), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73951,7 +74021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(2026), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73984,11 +74054,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56151] = 3, + [56449] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1840), 12, + ACTIONS(2016), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74001,7 +74071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1842), 32, + ACTIONS(2018), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74034,11 +74104,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56204] = 3, + [56502] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2040), 12, + ACTIONS(2052), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74051,7 +74121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2038), 32, + ACTIONS(2054), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74084,11 +74154,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56257] = 3, + [56555] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1553), 12, + ACTIONS(1998), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74101,7 +74171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1555), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74134,61 +74204,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56310] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2030), 12, - sym__dedent, + [56608] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1972), 1, + anon_sym_await, + ACTIONS(2056), 1, + anon_sym_in, + STATE(1003), 1, + sym_string, + STATE(1594), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(1628), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1968), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2032), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1966), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [56363] = 3, + STATE(1392), 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, + [56697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2058), 12, + ACTIONS(1952), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74201,7 +74289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2060), 32, + ACTIONS(1954), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74234,11 +74322,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56416] = 3, + [56750] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, + anon_sym_LBRACK, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1594), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(2319), 1, + sym_pattern, + STATE(2644), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1968), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1966), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1392), 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, + [56839] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1501), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74251,7 +74407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1503), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74284,11 +74440,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56469] = 3, + [56892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, + ACTIONS(1501), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74301,7 +74457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(1503), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74334,11 +74490,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56522] = 3, + [56945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, + ACTIONS(1922), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74351,7 +74507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2014), 32, + ACTIONS(1920), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74384,61 +74540,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56575] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1994), 12, - sym__dedent, + [56998] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, + ACTIONS(1960), 1, + anon_sym_RBRACK, + ACTIONS(2028), 1, + sym_identifier, + ACTIONS(2030), 1, anon_sym_LPAREN, + ACTIONS(2032), 1, anon_sym_STAR, + ACTIONS(2038), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2040), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1602), 1, + sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + STATE(2570), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(2036), 2, + anon_sym_match, + anon_sym_type, + STATE(1603), 2, + sym_attribute, + sym_subscript, + STATE(2561), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1996), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(2034), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [56628] = 3, + STATE(1392), 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, + [57087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 12, + ACTIONS(1978), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74451,7 +74625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2012), 32, + ACTIONS(1980), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74484,13 +74658,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56681] = 3, + [57140] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2018), 12, - sym__dedent, + ACTIONS(1866), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74501,7 +74675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2020), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74534,13 +74708,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56734] = 3, + [57193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2064), 12, + ACTIONS(2052), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74551,7 +74725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2066), 32, + ACTIONS(2054), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74584,11 +74758,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56787] = 3, + [57246] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2070), 12, + ACTIONS(2044), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74601,7 +74775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2068), 32, + ACTIONS(2046), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74634,11 +74808,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56840] = 3, + [57299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1864), 12, + ACTIONS(1824), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74651,7 +74825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1866), 32, + ACTIONS(1826), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74684,11 +74858,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56893] = 3, + [57352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, + ACTIONS(1878), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74701,7 +74875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(1876), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74734,13 +74908,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56946] = 3, + [57405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, + ACTIONS(1491), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74751,7 +74925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1489), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74784,79 +74958,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56999] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2262), 1, - sym_pattern, - STATE(2714), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [57088] = 3, + [57458] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 12, + ACTIONS(1926), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74869,7 +74975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2034), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74902,311 +75008,283 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57141] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1978), 12, - sym__dedent, + [57511] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 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(1980), 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(1962), 1, sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, + anon_sym_LBRACK, + ACTIONS(1972), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [57194] = 3, + STATE(1003), 1, + sym_string, + STATE(1594), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(2449), 1, + sym_pattern, + STATE(2680), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2070), 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(314), 2, sym_ellipsis, sym_float, - ACTIONS(2068), 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, + ACTIONS(1968), 2, 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, - [57247] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1868), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1870), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1966), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57300] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1938), 12, + STATE(1392), 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, + [57600] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1594), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(2451), 1, + sym_pattern, + STATE(2689), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1968), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, 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, + ACTIONS(1966), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57353] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1998), 12, - sym__dedent, + STATE(1392), 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, + [57689] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1594), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(2463), 1, + sym_pattern, + STATE(2714), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1968), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2000), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1966), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57406] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2006), 12, - sym__dedent, + STATE(1392), 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, + [57778] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1594), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(2464), 1, + sym_pattern, + STATE(2716), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1968), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2008), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1966), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57459] = 3, + STATE(1392), 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, + [57867] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1982), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75219,7 +75297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1984), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75252,60 +75330,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57512] = 21, - ACTIONS(311), 1, + [57920] = 21, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1822), 1, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(1824), 1, + ACTIONS(1964), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_STAR, - ACTIONS(1834), 1, + ACTIONS(1970), 1, anon_sym_LBRACK, - ACTIONS(1836), 1, + ACTIONS(1972), 1, anon_sym_await, - ACTIONS(2054), 1, - anon_sym_RPAREN, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1606), 1, + STATE(1594), 1, sym_list_splat_pattern, - STATE(1624), 1, + STATE(1609), 1, sym_primary_expression, - STATE(2611), 1, + STATE(2490), 1, sym_pattern, + STATE(2780), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1832), 2, + ACTIONS(1968), 2, anon_sym_match, anon_sym_type, - STATE(1607), 2, + STATE(1595), 2, sym_attribute, sym_subscript, - STATE(2597), 2, + STATE(1638), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1830), 3, + ACTIONS(1966), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75320,63 +75398,81 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57601] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1872), 12, - sym__dedent, + [58009] = 21, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1594), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(2491), 1, + sym_pattern, + STATE(2784), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(1968), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(1638), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(308), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1874), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1966), 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(316), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57654] = 3, + STATE(1392), 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, + [58098] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2064), 12, - sym__dedent, + ACTIONS(2050), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75387,7 +75483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2066), 32, + ACTIONS(2048), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75420,60 +75516,58 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57707] = 21, - ACTIONS(311), 1, + [58151] = 20, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1109), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1117), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1119), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(2058), 1, + anon_sym_STAR, + STATE(1003), 1, sym_string, - STATE(1598), 1, + STATE(1461), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1612), 1, sym_primary_expression, - STATE(2469), 1, + STATE(1628), 1, sym_pattern, - STATE(2700), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1464), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1638), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75488,60 +75582,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57796] = 21, - ACTIONS(311), 1, + [58237] = 20, + ACTIONS(17), 1, + anon_sym_STAR, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(963), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(967), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(975), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(977), 1, anon_sym_await, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1598), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2498), 1, + STATE(1588), 1, sym_pattern, - STATE(2775), 1, - sym_pattern_list, + STATE(1598), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(973), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1341), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1592), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(971), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75556,60 +75648,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57885] = 21, - ACTIONS(311), 1, + [58323] = 20, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(2028), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(2030), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(2032), 1, + anon_sym_STAR, + ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(2040), 1, anon_sym_await, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1598), 1, + STATE(1602), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1616), 1, sym_primary_expression, - STATE(2471), 1, + STATE(2570), 1, sym_pattern, - STATE(2709), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(2036), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1603), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(2561), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(2034), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75624,410 +75714,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57974] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1922), 12, + [58409] = 20, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1920), 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, - [58027] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1990), 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(1992), 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, - [58080] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1930), 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(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, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [58133] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1497), 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(1499), 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, - [58186] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2002), 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(2004), 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, - [58239] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2024), 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(2022), 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, - [58292] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2028), 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(2026), 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, - [58345] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1972), 1, anon_sym_await, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1598), 1, + STATE(1594), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1609), 1, sym_primary_expression, - STATE(2483), 1, + STATE(1628), 1, sym_pattern, - STATE(2734), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1968), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1595), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1638), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1966), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76042,60 +75780,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58434] = 21, - ACTIONS(311), 1, + [58495] = 20, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1728), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1730), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1732), 1, + anon_sym_STAR, + ACTIONS(1738), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1740), 1, anon_sym_await, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1598), 1, + STATE(1567), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1617), 1, sym_primary_expression, - STATE(2484), 1, + STATE(2090), 1, sym_pattern, - STATE(2736), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1736), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1568), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(2054), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1734), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76110,60 +75846,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58523] = 21, - ACTIONS(311), 1, + [58581] = 20, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1802), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1804), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1814), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1816), 1, anon_sym_await, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1598), 1, + STATE(1601), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1611), 1, sym_primary_expression, - STATE(2510), 1, + STATE(2576), 1, sym_pattern, - STATE(2800), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1812), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1583), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(2537), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1810), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76178,60 +75912,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58612] = 21, - ACTIONS(311), 1, + [58667] = 19, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2068), 1, anon_sym_await, - ACTIONS(2072), 1, - anon_sym_in, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1598), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1609), 1, sym_primary_expression, - STATE(1640), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(2062), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2066), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1599), 2, sym_attribute, sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(2064), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76246,58 +75976,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58701] = 20, - ACTIONS(311), 1, + [58750] = 19, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1127), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(1135), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1137), 1, - anon_sym_await, - ACTIONS(2074), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2070), 1, + sym_identifier, + ACTIONS(2076), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1489), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1625), 1, + STATE(1611), 1, sym_primary_expression, - STATE(1640), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(1133), 2, + ACTIONS(2062), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2074), 2, anon_sym_match, anon_sym_type, - STATE(1491), 2, + STATE(1577), 2, sym_attribute, sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1131), 3, + ACTIONS(2072), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76312,60 +76040,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58787] = 20, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1822), 1, - sym_identifier, - ACTIONS(1824), 1, + [58833] = 17, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_STAR, - ACTIONS(1834), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1836), 1, + ACTIONS(735), 1, + anon_sym_LBRACE, + ACTIONS(739), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(741), 1, + sym_string_start, + ACTIONS(1265), 1, + anon_sym_STAR, + ACTIONS(2078), 1, + anon_sym_not, + STATE(963), 1, sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, + STATE(1013), 1, sym_primary_expression, - STATE(2611), 1, - sym_pattern, + STATE(1213), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1832), 2, + ACTIONS(729), 2, anon_sym_match, anon_sym_type, - STATE(1607), 2, - sym_attribute, - sym_subscript, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1830), 3, + ACTIONS(737), 2, + sym_ellipsis, + sym_float, + ACTIONS(727), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(733), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(721), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76378,60 +76101,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58873] = 20, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, + [58911] = 17, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(805), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(807), 1, + sym_string_start, + ACTIONS(1249), 1, + anon_sym_STAR, + ACTIONS(2078), 1, + anon_sym_not, + STATE(970), 1, sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(997), 1, sym_primary_expression, - STATE(1640), 1, - sym_pattern, + STATE(1254), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, + ACTIONS(795), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(803), 2, + sym_ellipsis, + sym_float, + ACTIONS(793), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(799), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(787), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76444,60 +76162,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58959] = 20, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1706), 1, + [58989] = 17, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(1708), 1, - anon_sym_STAR, - ACTIONS(1714), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(1716), 1, + ACTIONS(757), 1, + anon_sym_LBRACE, + ACTIONS(761), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(1345), 1, + anon_sym_STAR, + ACTIONS(2078), 1, + anon_sym_not, + STATE(1098), 1, sym_string, - STATE(1584), 1, - sym_list_splat_pattern, - STATE(1632), 1, + STATE(1279), 1, sym_primary_expression, - STATE(2088), 1, - sym_pattern, + STATE(1423), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1712), 2, + ACTIONS(751), 2, anon_sym_match, anon_sym_type, - STATE(1585), 2, - sym_attribute, - sym_subscript, - STATE(2122), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1710), 3, + ACTIONS(759), 2, + sym_ellipsis, + sym_float, + ACTIONS(749), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(755), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(743), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76510,60 +76223,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59045] = 20, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(979), 1, - sym_identifier, - ACTIONS(983), 1, + [59067] = 17, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(991), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(993), 1, + ACTIONS(686), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(692), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(2078), 1, + anon_sym_not, + STATE(961), 1, sym_string, - STATE(1370), 1, - sym_list_splat_pattern, - STATE(1614), 1, - sym_pattern, - STATE(1616), 1, + STATE(1027), 1, sym_primary_expression, + STATE(1212), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(989), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - STATE(1371), 2, - sym_attribute, - sym_subscript, - STATE(1628), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(987), 3, + ACTIONS(688), 2, + sym_ellipsis, + sym_float, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(684), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(672), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76576,60 +76284,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59131] = 20, - ACTIONS(311), 1, + [59145] = 17, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2042), 1, - sym_identifier, - ACTIONS(2044), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(2046), 1, - anon_sym_STAR, - ACTIONS(2052), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(670), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(2078), 1, + anon_sym_not, + STATE(1003), 1, sym_string, - STATE(1599), 1, - sym_list_splat_pattern, - STATE(1631), 1, + STATE(1061), 1, sym_primary_expression, - STATE(2612), 1, - sym_pattern, + STATE(1300), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(2050), 2, + ACTIONS(664), 2, anon_sym_match, anon_sym_type, - STATE(1600), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2048), 3, + ACTIONS(662), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76642,58 +76345,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59217] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [59223] = 17, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2076), 1, - sym_identifier, - ACTIONS(2084), 1, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(717), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(1275), 1, + anon_sym_STAR, + ACTIONS(2078), 1, + anon_sym_not, + STATE(977), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1624), 1, + STATE(1047), 1, sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2078), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2082), 2, + ACTIONS(705), 2, anon_sym_match, anon_sym_type, - STATE(1592), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2080), 3, + ACTIONS(715), 2, + sym_ellipsis, + sym_float, + ACTIONS(703), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(711), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(697), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76706,58 +76406,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59300] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [59301] = 17, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2086), 1, - sym_identifier, - ACTIONS(2092), 1, + ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(783), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(2078), 1, + anon_sym_not, + STATE(985), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1075), 1, sym_primary_expression, + STATE(1376), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2078), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2090), 2, + ACTIONS(773), 2, anon_sym_match, anon_sym_type, - STATE(1630), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2088), 3, + ACTIONS(781), 2, + sym_ellipsis, + sym_float, + ACTIONS(771), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(777), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(765), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76770,26 +76467,91 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59383] = 17, + [59379] = 21, + ACTIONS(2082), 1, + anon_sym_DOT, + ACTIONS(2084), 1, + anon_sym_LPAREN, + ACTIONS(2092), 1, + anon_sym_STAR_STAR, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2096), 1, + anon_sym_LBRACK, + ACTIONS(2102), 1, + anon_sym_PIPE, + ACTIONS(2104), 1, + anon_sym_not, + ACTIONS(2106), 1, + anon_sym_AMP, + ACTIONS(2108), 1, + anon_sym_CARET, + ACTIONS(2110), 1, + anon_sym_is, + STATE(1544), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2086), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2088), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2100), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2112), 2, + anon_sym_LT, + anon_sym_GT, + STATE(909), 2, + sym__not_in, + sym__is_not, + STATE(1076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2098), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2090), 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(2080), 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, + [59465] = 17, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(649), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1319), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2078), 1, anon_sym_not, - STATE(969), 1, + STATE(953), 1, sym_string, - STATE(988), 1, + STATE(968), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1049), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -76797,14 +76559,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(643), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(641), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76814,7 +76576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76831,55 +76593,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59461] = 17, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [59543] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(733), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2094), 1, - anon_sym_not, - STATE(980), 1, + ACTIONS(2114), 1, + sym_identifier, + ACTIONS(2120), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1004), 1, - sym_primary_expression, - STATE(1229), 1, + STATE(1300), 1, sym_list_splat_pattern, + STATE(1598), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(729), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(2118), 2, + anon_sym_match, + anon_sym_type, + STATE(651), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(2116), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76892,51 +76654,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59539] = 17, - ACTIONS(690), 1, + [59622] = 16, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(690), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(2094), 1, - anon_sym_not, - STATE(983), 1, + STATE(961), 1, sym_string, - STATE(1019), 1, + STATE(1026), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(672), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76953,51 +76713,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59617] = 17, - ACTIONS(805), 1, + [59697] = 16, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(817), 1, - anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(670), 1, anon_sym_await, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2094), 1, - anon_sym_not, - STATE(977), 1, + STATE(1003), 1, sym_string, - STATE(1040), 1, + STATE(1060), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1300), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(819), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(664), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(662), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77014,51 +76772,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59695] = 17, - ACTIONS(783), 1, + [59772] = 16, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(690), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(2094), 1, - anon_sym_not, - STATE(1034), 1, + STATE(961), 1, sym_string, - STATE(1102), 1, + STATE(1027), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(672), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77075,51 +76831,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59773] = 17, - ACTIONS(737), 1, + [59847] = 16, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(670), 1, anon_sym_await, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2094), 1, - anon_sym_not, - STATE(1110), 1, + STATE(1003), 1, sym_string, - STATE(1258), 1, + STATE(1061), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1300), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(664), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(662), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77136,51 +76890,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59851] = 17, - ACTIONS(759), 1, + [59922] = 18, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(2122), 1, + sym_identifier, + ACTIONS(2128), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1300), 1, + sym_list_splat_pattern, + STATE(1614), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(2126), 2, + anon_sym_match, + anon_sym_type, + STATE(1293), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2124), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1392), 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, + [60001] = 16, + ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + anon_sym_LBRACK, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(739), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1265), 1, anon_sym_STAR, - ACTIONS(2094), 1, - anon_sym_not, - STATE(1044), 1, + STATE(963), 1, sym_string, - STATE(1071), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1213), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(729), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(727), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(721), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77197,51 +77010,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59929] = 17, - ACTIONS(311), 1, + [60076] = 16, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(670), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2094), 1, - anon_sym_not, - STATE(1025), 1, + STATE(1003), 1, sym_string, STATE(1062), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(664), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(662), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(316), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77258,114 +77069,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60007] = 21, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2110), 1, - anon_sym_EQ, - ACTIONS(2112), 1, - anon_sym_LBRACK, - ACTIONS(2118), 1, - anon_sym_PIPE, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2122), 1, - anon_sym_AMP, - ACTIONS(2124), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_is, - STATE(1564), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2102), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2104), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2116), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2128), 2, - anon_sym_LT, - anon_sym_GT, - STATE(965), 2, - sym__not_in, - sym__is_not, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2106), 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(2096), 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, - [60093] = 16, - ACTIONS(783), 1, + [60151] = 16, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(670), 1, anon_sym_await, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1003), 1, sym_string, - STATE(1096), 1, + STATE(1065), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1300), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(797), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(664), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(662), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77382,49 +77128,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60168] = 16, - ACTIONS(690), 1, + [60226] = 16, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(690), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(983), 1, + STATE(961), 1, sym_string, - STATE(1021), 1, + STATE(1028), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(672), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77441,49 +77187,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60243] = 16, - ACTIONS(715), 1, + [60301] = 16, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(690), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(980), 1, + STATE(961), 1, sym_string, - STATE(1008), 1, + STATE(1029), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(672), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77500,53 +77246,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60318] = 16, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [60376] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(777), 1, - anon_sym_await, - ACTIONS(779), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1044), 1, + ACTIONS(2130), 1, + sym_identifier, + ACTIONS(2136), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1127), 1, - sym_primary_expression, - STATE(1390), 1, + STATE(1300), 1, sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(775), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(2134), 2, + anon_sym_match, + anon_sym_type, + STATE(1296), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(2132), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77559,49 +77307,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60393] = 16, - ACTIONS(759), 1, + [60455] = 16, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(690), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(961), 1, sym_string, - STATE(1133), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(672), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77618,49 +77366,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60468] = 16, - ACTIONS(759), 1, + [60530] = 16, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(717), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1071), 1, + STATE(1116), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(705), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(703), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(697), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77677,49 +77425,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60543] = 16, - ACTIONS(759), 1, + [60605] = 16, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(690), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(961), 1, sym_string, - STATE(1101), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(672), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77736,49 +77484,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60618] = 16, - ACTIONS(759), 1, + [60680] = 16, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(690), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(961), 1, sym_string, - STATE(1055), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(672), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77795,49 +77543,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60693] = 16, - ACTIONS(759), 1, + [60755] = 16, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(717), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1088), 1, + STATE(1125), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(705), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(703), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(697), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77854,49 +77602,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60768] = 16, - ACTIONS(759), 1, + [60830] = 16, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(739), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(963), 1, sym_string, - STATE(1090), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1213), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(729), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(727), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(721), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77913,49 +77661,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60843] = 16, - ACTIONS(759), 1, + [60905] = 18, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(2138), 1, + sym_identifier, + ACTIONS(2144), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1300), 1, + sym_list_splat_pattern, + STATE(1610), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(2142), 2, + anon_sym_match, + anon_sym_type, + STATE(1044), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2140), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1392), 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, + [60984] = 16, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(717), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1125), 1, + STATE(1038), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1407), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(705), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(703), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(697), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77972,53 +77781,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60918] = 16, - ACTIONS(311), 1, + [61059] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2128), 1, + anon_sym_await, + ACTIONS(2146), 1, + sym_identifier, + STATE(1003), 1, sym_string, - STATE(1060), 1, - sym_primary_expression, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, + STATE(1611), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(2150), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + STATE(1381), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(2148), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78031,49 +77842,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60993] = 16, - ACTIONS(690), 1, + [61138] = 16, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(690), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(983), 1, + STATE(961), 1, sym_string, - STATE(1022), 1, + STATE(1019), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(672), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78090,49 +77901,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61068] = 16, - ACTIONS(783), 1, + [61213] = 16, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(670), 1, anon_sym_await, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1003), 1, sym_string, - STATE(1104), 1, + STATE(1096), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1300), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(797), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(664), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(662), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78149,49 +77960,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61143] = 16, - ACTIONS(783), 1, + [61288] = 16, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(670), 1, anon_sym_await, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1003), 1, sym_string, - STATE(1105), 1, + STATE(1111), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1300), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(797), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(664), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(662), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78208,53 +78019,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61218] = 16, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [61363] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(708), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(983), 1, + ACTIONS(2152), 1, + sym_identifier, + ACTIONS(2158), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1023), 1, - sym_primary_expression, - STATE(1249), 1, + STATE(1300), 1, sym_list_splat_pattern, + STATE(1611), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(2156), 2, + anon_sym_match, + anon_sym_type, + STATE(1581), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(2154), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78267,49 +78080,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61293] = 16, - ACTIONS(783), 1, + [61442] = 21, + ACTIONS(2094), 1, + anon_sym_as, + ACTIONS(2104), 1, + anon_sym_not, + ACTIONS(2160), 1, + anon_sym_DOT, + ACTIONS(2162), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(2170), 1, + anon_sym_STAR_STAR, + ACTIONS(2172), 1, anon_sym_LBRACK, - ACTIONS(795), 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(1561), 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(908), 2, + sym__not_in, + sym__is_not, + STATE(1220), 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(2080), 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, + [61527] = 16, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - anon_sym_await, - ACTIONS(801), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(670), 1, + anon_sym_await, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1003), 1, sym_string, - STATE(1106), 1, + STATE(1113), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1300), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(797), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(664), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(662), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78326,49 +78203,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61368] = 16, - ACTIONS(690), 1, + [61602] = 16, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(739), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(983), 1, + STATE(963), 1, sym_string, - STATE(1024), 1, + STATE(1017), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1213), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(729), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(727), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(721), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78385,53 +78262,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61443] = 18, - ACTIONS(311), 1, + [61677] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2130), 1, - sym_identifier, - ACTIONS(2136), 1, + ACTIONS(2120), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(2188), 1, + sym_identifier, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1598), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(2134), 2, + ACTIONS(2118), 2, anon_sym_match, anon_sym_type, - STATE(1605), 2, + STATE(651), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2132), 3, + ACTIONS(2116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78446,55 +78323,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61522] = 18, - ACTIONS(311), 1, + [61756] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2138), 1, - sym_identifier, - ACTIONS(2144), 1, + ACTIONS(649), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(1319), 1, + anon_sym_STAR, + STATE(953), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1631), 1, + STATE(960), 1, sym_primary_expression, + STATE(1049), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2142), 2, + ACTIONS(643), 2, anon_sym_match, anon_sym_type, - STATE(1268), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2140), 3, + ACTIONS(641), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78507,49 +78382,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61601] = 16, - ACTIONS(783), 1, + [61831] = 16, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(739), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(963), 1, sym_string, - STATE(1107), 1, + STATE(1011), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1213), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(729), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(727), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(721), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78566,53 +78441,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61676] = 16, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [61906] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, - ACTIONS(755), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1110), 1, + ACTIONS(2190), 1, + sym_identifier, + ACTIONS(2196), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1251), 1, - sym_primary_expression, - STATE(1451), 1, + STATE(1300), 1, sym_list_splat_pattern, + STATE(1615), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(2194), 2, + anon_sym_match, + anon_sym_type, + STATE(1435), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(2192), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78625,49 +78502,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61751] = 16, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [61985] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(783), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(985), 1, sym_string, - STATE(1061), 1, + STATE(1097), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1376), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, + ACTIONS(773), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(781), 2, + sym_ellipsis, + sym_float, + ACTIONS(771), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(777), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(765), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78684,49 +78561,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61826] = 16, - ACTIONS(805), 1, + [62060] = 21, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2104), 1, + anon_sym_not, + ACTIONS(2198), 1, + anon_sym_DOT, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(2208), 1, + anon_sym_STAR_STAR, + ACTIONS(2210), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(2216), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_AMP, + ACTIONS(2220), 1, + anon_sym_CARET, + ACTIONS(2222), 1, + anon_sym_is, + STATE(1558), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2202), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2214), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2224), 2, + anon_sym_LT, + anon_sym_GT, + STATE(858), 2, + sym__not_in, + sym__is_not, + STATE(1269), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2212), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2206), 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(2080), 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, + [62145] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(821), 1, - anon_sym_await, - ACTIONS(823), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(649), 1, + anon_sym_await, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(977), 1, + STATE(953), 1, sym_string, - STATE(1038), 1, + STATE(957), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1049), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(643), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(641), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78743,49 +78684,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61901] = 16, - ACTIONS(805), 1, + [62220] = 16, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(739), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(741), 1, sym_string_start, ACTIONS(1265), 1, anon_sym_STAR, - STATE(977), 1, + STATE(963), 1, sym_string, - STATE(1039), 1, + STATE(1012), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1213), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(729), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(727), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(721), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78802,55 +78743,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61976] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [62295] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2146), 1, - sym_identifier, - ACTIONS(2152), 1, + ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(783), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(1339), 1, + anon_sym_STAR, + STATE(985), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1066), 1, sym_primary_expression, + STATE(1376), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2150), 2, + ACTIONS(773), 2, anon_sym_match, anon_sym_type, - STATE(1402), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2148), 3, + ACTIONS(781), 2, + sym_ellipsis, + sym_float, + ACTIONS(771), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(777), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(765), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78863,49 +78802,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62055] = 16, - ACTIONS(805), 1, + [62370] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(783), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1040), 1, + STATE(1072), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1376), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(773), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(771), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(765), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78922,49 +78861,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62130] = 16, - ACTIONS(759), 1, + [62445] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(783), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1138), 1, + STATE(1075), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1376), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(773), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(771), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(765), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78981,53 +78920,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62205] = 18, - ACTIONS(311), 1, + [62520] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2154), 1, - sym_identifier, - ACTIONS(2160), 1, + ACTIONS(2144), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(2226), 1, + sym_identifier, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1627), 1, + STATE(1610), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(2158), 2, + ACTIONS(2142), 2, anon_sym_match, anon_sym_type, - STATE(1368), 2, + STATE(1044), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2156), 3, + ACTIONS(2140), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79042,49 +78981,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62284] = 16, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [62599] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(783), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(985), 1, sym_string, - STATE(1069), 1, + STATE(1077), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1376), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, + ACTIONS(773), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(781), 2, + sym_ellipsis, + sym_float, + ACTIONS(771), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(777), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(765), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79101,49 +79040,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62359] = 16, - ACTIONS(805), 1, + [62674] = 16, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(817), 1, - anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(670), 1, anon_sym_await, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(977), 1, + STATE(1003), 1, sym_string, - STATE(1041), 1, + STATE(1094), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1300), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(819), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(664), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(662), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79160,53 +79099,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62434] = 16, - ACTIONS(67), 1, + [62749] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2196), 1, + anon_sym_await, + ACTIONS(2228), 1, + sym_identifier, + STATE(1003), 1, sym_string, - STATE(989), 1, - sym_primary_expression, - STATE(1135), 1, + STATE(1300), 1, sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(2232), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1140), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(2230), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79219,49 +79160,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62509] = 16, - ACTIONS(715), 1, + [62828] = 16, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(761), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(980), 1, + STATE(1098), 1, sym_string, - STATE(998), 1, + STATE(1221), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1423), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(751), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(749), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(743), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79278,49 +79219,108 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62584] = 16, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [62903] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(783), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(985), 1, sym_string, - STATE(1062), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1376), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, + ACTIONS(773), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(781), 2, + sym_ellipsis, + sym_float, + ACTIONS(771), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(765), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1308), 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, + [62978] = 16, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(775), 1, + anon_sym_LBRACK, + ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(783), 1, + anon_sym_await, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(1339), 1, + anon_sym_STAR, + STATE(985), 1, + sym_string, + STATE(1081), 1, + sym_primary_expression, + STATE(1376), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(773), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(781), 2, + sym_ellipsis, + sym_float, + ACTIONS(771), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(777), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(765), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79337,53 +79337,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62659] = 16, - ACTIONS(311), 1, + [63053] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2196), 1, + anon_sym_await, + ACTIONS(2234), 1, + sym_identifier, + STATE(1003), 1, sym_string, - STATE(1063), 1, - sym_primary_expression, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, + STATE(1615), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(2194), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + STATE(1435), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(2192), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79396,49 +79398,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62734] = 16, - ACTIONS(715), 1, + [63132] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(783), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(980), 1, + STATE(985), 1, sym_string, - STATE(1002), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1376), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(773), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(771), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(765), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79455,49 +79457,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62809] = 16, - ACTIONS(805), 1, + [63207] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(779), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(783), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(785), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1339), 1, anon_sym_STAR, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1042), 1, + STATE(1132), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1376), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(773), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(781), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(771), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(777), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(765), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1308), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79514,24 +79516,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62884] = 16, + [63282] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(649), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(969), 1, + STATE(953), 1, sym_string, - STATE(990), 1, + STATE(958), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1049), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -79539,14 +79541,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(643), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(641), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -79556,7 +79558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79573,53 +79575,114 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62959] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, + [63357] = 16, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(757), 1, + anon_sym_LBRACE, + ACTIONS(761), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1098), 1, sym_string, - STATE(991), 1, + STATE(1217), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1423), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(751), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(749), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(743), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1425), 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, + [63432] = 18, + ACTIONS(303), 1, + anon_sym_LBRACE, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(2236), 1, + sym_identifier, + ACTIONS(2242), 1, + anon_sym_await, + STATE(1003), 1, + sym_string, + STATE(1300), 1, + sym_list_splat_pattern, + STATE(1617), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(314), 2, + sym_ellipsis, + sym_float, + ACTIONS(2240), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1141), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(2238), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79632,53 +79695,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63034] = 18, - ACTIONS(311), 1, + [63511] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2162), 1, - sym_identifier, - ACTIONS(2168), 1, + ACTIONS(2136), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(2244), 1, + sym_identifier, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1632), 1, + STATE(1609), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(2166), 2, + ACTIONS(2134), 2, anon_sym_match, anon_sym_type, - STATE(1269), 2, + STATE(1296), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2164), 3, + ACTIONS(2132), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79693,49 +79756,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63113] = 16, - ACTIONS(715), 1, - anon_sym_LPAREN, + [63590] = 16, ACTIONS(723), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(739), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(741), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(980), 1, + STATE(963), 1, sym_string, - STATE(1003), 1, + STATE(1013), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1213), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(729), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(727), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(721), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79752,55 +79815,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63188] = 18, - ACTIONS(311), 1, + [63665] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2170), 1, - sym_identifier, - ACTIONS(2176), 1, + ACTIONS(649), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(1319), 1, + anon_sym_STAR, + STATE(953), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1616), 1, + STATE(968), 1, sym_primary_expression, + STATE(1049), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2174), 2, + ACTIONS(643), 2, anon_sym_match, anon_sym_type, - STATE(639), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2172), 3, + ACTIONS(641), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79813,53 +79874,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63267] = 18, - ACTIONS(311), 1, + [63740] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2178), 1, + ACTIONS(2246), 1, sym_identifier, - ACTIONS(2184), 1, + ACTIONS(2252), 1, anon_sym_await, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1623), 1, + STATE(1612), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(2182), 2, + ACTIONS(2250), 2, anon_sym_match, anon_sym_type, - STATE(1085), 2, + STATE(1469), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2180), 3, + ACTIONS(2248), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79874,55 +79935,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63346] = 18, - ACTIONS(311), 1, + [63819] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2184), 1, + ACTIONS(649), 1, anon_sym_await, - ACTIONS(2186), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(1319), 1, + anon_sym_STAR, + STATE(953), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1623), 1, + STATE(976), 1, sym_primary_expression, + STATE(1049), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2182), 2, + ACTIONS(643), 2, anon_sym_match, anon_sym_type, - STATE(1085), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2180), 3, + ACTIONS(641), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79935,55 +79994,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63425] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [63894] = 16, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2194), 1, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(717), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(1275), 1, + anon_sym_STAR, + STATE(977), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1625), 1, + STATE(1039), 1, sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2192), 2, + ACTIONS(705), 2, anon_sym_match, anon_sym_type, - STATE(1480), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2190), 3, + ACTIONS(715), 2, + sym_ellipsis, + sym_float, + ACTIONS(703), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(711), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(697), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79996,49 +80053,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63504] = 16, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [63969] = 16, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(735), 1, + anon_sym_LBRACE, + ACTIONS(739), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(741), 1, + sym_string_start, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(963), 1, sym_string, - STATE(1070), 1, + STATE(1014), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1213), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, + ACTIONS(729), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(737), 2, + sym_ellipsis, + sym_float, + ACTIONS(727), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(733), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(721), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80055,49 +80112,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63579] = 16, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [64044] = 16, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(717), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(977), 1, sym_string, - STATE(1052), 1, + STATE(1047), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1407), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, + ACTIONS(705), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(715), 2, + sym_ellipsis, + sym_float, + ACTIONS(703), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(711), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(697), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80114,24 +80171,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63654] = 16, + [64119] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(649), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(969), 1, + STATE(953), 1, sym_string, - STATE(987), 1, + STATE(959), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1049), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80139,14 +80196,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(643), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(641), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -80156,7 +80213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80173,49 +80230,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63729] = 16, - ACTIONS(805), 1, + [64194] = 16, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(735), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(739), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(741), 1, sym_string_start, ACTIONS(1265), 1, anon_sym_STAR, - STATE(977), 1, + STATE(963), 1, sym_string, - STATE(1043), 1, + STATE(1015), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1213), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(729), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(737), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(727), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(733), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(721), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80232,49 +80289,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63804] = 16, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [64269] = 16, + ACTIONS(723), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(735), 1, + anon_sym_LBRACE, + ACTIONS(739), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(741), 1, + sym_string_start, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(963), 1, sym_string, - STATE(1072), 1, + STATE(1016), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1213), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, + ACTIONS(729), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(737), 2, + sym_ellipsis, + sym_float, + ACTIONS(727), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(733), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(721), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1190), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80291,49 +80348,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63879] = 16, - ACTIONS(311), 1, + [64344] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(649), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(953), 1, sym_string, - STATE(1064), 1, + STATE(966), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1049), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(643), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(641), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80350,49 +80407,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63954] = 16, - ACTIONS(715), 1, + [64419] = 21, + ACTIONS(2094), 1, + anon_sym_as, + ACTIONS(2104), 1, + anon_sym_not, + ACTIONS(2254), 1, + anon_sym_DOT, + ACTIONS(2256), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(2264), 1, + anon_sym_STAR_STAR, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(2272), 1, + anon_sym_PIPE, + ACTIONS(2274), 1, + anon_sym_AMP, + ACTIONS(2276), 1, + anon_sym_CARET, + ACTIONS(2278), 1, + anon_sym_is, + STATE(1553), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2260), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2270), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2280), 2, + anon_sym_LT, + anon_sym_GT, + STATE(933), 2, + sym__not_in, + sym__is_not, + STATE(1166), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2268), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2262), 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(2080), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [64504] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(733), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(649), 1, + anon_sym_await, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(980), 1, + STATE(953), 1, sym_string, - STATE(1007), 1, + STATE(975), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1049), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(643), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(641), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80409,53 +80530,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64029] = 16, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [64579] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(733), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(980), 1, + ACTIONS(2282), 1, + sym_identifier, + ACTIONS(2288), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1009), 1, - sym_primary_expression, - STATE(1229), 1, + STATE(1300), 1, sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(729), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(2286), 2, + anon_sym_match, + anon_sym_type, + STATE(1596), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(2284), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80468,49 +80591,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64104] = 16, - ACTIONS(715), 1, + [64658] = 16, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(761), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(980), 1, + STATE(1098), 1, sym_string, - STATE(1005), 1, + STATE(1268), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1423), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(751), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(749), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(743), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80527,55 +80650,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64179] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [64733] = 16, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2196), 1, - sym_identifier, - ACTIONS(2202), 1, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(717), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(1275), 1, + anon_sym_STAR, + STATE(977), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1624), 1, + STATE(1048), 1, sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2200), 2, + ACTIONS(705), 2, anon_sym_match, anon_sym_type, - STATE(1594), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2198), 3, + ACTIONS(715), 2, + sym_ellipsis, + sym_float, + ACTIONS(703), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(711), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(697), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80588,55 +80709,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64258] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [64808] = 16, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(757), 1, + anon_sym_LBRACE, + ACTIONS(761), 1, anon_sym_await, - ACTIONS(2204), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(1345), 1, + anon_sym_STAR, + STATE(1098), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1629), 1, + STATE(1271), 1, sym_primary_expression, + STATE(1423), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2208), 2, + ACTIONS(751), 2, anon_sym_match, anon_sym_type, - STATE(1435), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2206), 3, + ACTIONS(759), 2, + sym_ellipsis, + sym_float, + ACTIONS(749), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(755), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(743), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80649,152 +80768,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64337] = 21, - ACTIONS(2110), 1, - anon_sym_EQ, - ACTIONS(2120), 1, - anon_sym_not, - 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, - ACTIONS(2234), 1, - anon_sym_is, - STATE(1576), 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(954), 2, - sym__not_in, - sym__is_not, - STATE(1205), 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(2096), 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, - [64422] = 21, - ACTIONS(2110), 1, - anon_sym_as, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2240), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_STAR_STAR, - ACTIONS(2250), 1, - anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2258), 1, - anon_sym_AMP, - ACTIONS(2260), 1, - anon_sym_CARET, - ACTIONS(2262), 1, - anon_sym_is, - STATE(1569), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2242), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2244), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2254), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2264), 2, - anon_sym_LT, - anon_sym_GT, - STATE(897), 2, - sym__not_in, - sym__is_not, - STATE(1250), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2252), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2246), 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(2096), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [64507] = 16, + [64883] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(649), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1319), 1, anon_sym_STAR, - STATE(969), 1, + STATE(953), 1, sym_string, - STATE(974), 1, + STATE(964), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1049), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80802,14 +80793,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(643), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(641), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -80819,7 +80810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1052), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80836,55 +80827,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64582] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [64958] = 16, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2168), 1, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(717), 1, anon_sym_await, - ACTIONS(2266), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(1275), 1, + anon_sym_STAR, + STATE(977), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1626), 1, + STATE(1115), 1, sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2270), 2, + ACTIONS(705), 2, anon_sym_match, anon_sym_type, - STATE(1248), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2268), 3, + ACTIONS(715), 2, + sym_ellipsis, + sym_float, + ACTIONS(703), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(711), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(697), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80897,49 +80886,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64661] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, + [65033] = 16, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(757), 1, + anon_sym_LBRACE, + ACTIONS(761), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1098), 1, sym_string, - STATE(975), 1, + STATE(1279), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1423), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, + ACTIONS(751), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(759), 2, + sym_ellipsis, + sym_float, + ACTIONS(749), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(755), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(743), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80956,49 +80945,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64736] = 16, - ACTIONS(715), 1, + [65108] = 16, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(761), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(980), 1, + STATE(1098), 1, sym_string, - STATE(1004), 1, + STATE(1280), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1423), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(751), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(749), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(743), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81015,53 +81004,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64811] = 16, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [65183] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(821), 1, - anon_sym_await, - ACTIONS(823), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(977), 1, + ACTIONS(2242), 1, + anon_sym_await, + ACTIONS(2290), 1, + sym_identifier, + STATE(1003), 1, sym_string, - STATE(1010), 1, - sym_primary_expression, - STATE(1200), 1, + STATE(1300), 1, sym_list_splat_pattern, + STATE(1613), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(819), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(2294), 2, + anon_sym_match, + anon_sym_type, + STATE(1211), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(2292), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81074,49 +81065,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64886] = 16, - ACTIONS(715), 1, + [65262] = 16, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(805), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(980), 1, + STATE(970), 1, sym_string, - STATE(1006), 1, + STATE(992), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1254), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(795), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(793), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(787), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81133,49 +81124,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64961] = 16, - ACTIONS(805), 1, + [65337] = 16, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(805), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1045), 1, + STATE(995), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1254), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(795), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(793), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(787), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81192,49 +81183,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65036] = 16, - ACTIONS(805), 1, + [65412] = 16, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(805), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(977), 1, + STATE(970), 1, sym_string, - STATE(1017), 1, + STATE(996), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1254), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(795), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(793), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(787), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81251,49 +81242,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65111] = 16, - ACTIONS(690), 1, + [65487] = 16, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(805), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(983), 1, + STATE(970), 1, sym_string, - STATE(1048), 1, + STATE(997), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1254), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(795), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(793), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(787), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81310,55 +81301,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65186] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [65562] = 16, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2160), 1, + ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(805), 1, anon_sym_await, - ACTIONS(2272), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(807), 1, + sym_string_start, + ACTIONS(1249), 1, + anon_sym_STAR, + STATE(970), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1624), 1, + STATE(998), 1, sym_primary_expression, + STATE(1254), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2276), 2, + ACTIONS(795), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2274), 3, + ACTIONS(803), 2, + sym_ellipsis, + sym_float, + ACTIONS(793), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(799), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(787), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81371,49 +81360,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65265] = 16, - ACTIONS(690), 1, + [65637] = 16, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(983), 1, + STATE(977), 1, sym_string, - STATE(1018), 1, + STATE(1118), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1407), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(705), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(703), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(697), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81430,49 +81419,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65340] = 16, - ACTIONS(690), 1, + [65712] = 16, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(805), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(983), 1, + STATE(970), 1, sym_string, - STATE(1013), 1, + STATE(999), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1254), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(795), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(793), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(787), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81489,49 +81478,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65415] = 16, - ACTIONS(783), 1, + [65787] = 16, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(805), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(970), 1, sym_string, - STATE(1100), 1, + STATE(1000), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1254), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(795), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(793), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(787), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81548,49 +81537,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65490] = 16, - ACTIONS(783), 1, + [65862] = 16, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(805), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(970), 1, sym_string, - STATE(1148), 1, + STATE(1001), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1254), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(795), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(793), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(787), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81607,49 +81596,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65565] = 16, - ACTIONS(737), 1, + [65937] = 16, + ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(797), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(801), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(805), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(807), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(970), 1, sym_string, - STATE(1256), 1, + STATE(1002), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1254), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(795), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(803), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(793), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(799), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(787), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1148), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81666,167 +81655,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65640] = 16, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [66012] = 16, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, - ACTIONS(755), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1347), 1, - anon_sym_STAR, - STATE(1110), 1, - sym_string, - STATE(1257), 1, - sym_primary_expression, - STATE(1451), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(741), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(735), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1462), 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, - [65715] = 16, - ACTIONS(737), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(670), 1, anon_sym_await, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(1003), 1, sym_string, - STATE(1258), 1, + STATE(1059), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1300), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(664), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1462), 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, - [65790] = 16, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1347), 1, - anon_sym_STAR, - STATE(1110), 1, - sym_string, - STATE(1259), 1, - sym_primary_expression, - STATE(1451), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(741), 3, + ACTIONS(662), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(316), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1392), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81843,53 +81714,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65865] = 18, - ACTIONS(311), 1, + [66087] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2152), 1, + ACTIONS(2242), 1, anon_sym_await, - ACTIONS(2278), 1, + ACTIONS(2290), 1, sym_identifier, - STATE(1025), 1, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1617), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(2150), 2, + ACTIONS(2294), 2, anon_sym_match, anon_sym_type, - STATE(1402), 2, + STATE(1211), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2148), 3, + ACTIONS(2292), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81904,112 +81775,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65944] = 16, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [66166] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, - ACTIONS(755), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1110), 1, + ACTIONS(2122), 1, + sym_identifier, + ACTIONS(2128), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1260), 1, - sym_primary_expression, - STATE(1451), 1, + STATE(1300), 1, sym_list_splat_pattern, + STATE(1611), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(2126), 2, + anon_sym_match, + anon_sym_type, + STATE(1293), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1462), 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, - [66019] = 16, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1347), 1, - anon_sym_STAR, - STATE(1110), 1, - sym_string, - STATE(1261), 1, - sym_primary_expression, - STATE(1451), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(741), 3, + ACTIONS(2124), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82022,53 +81836,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66094] = 18, - ACTIONS(311), 1, + [66245] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2160), 1, - anon_sym_await, - ACTIONS(2280), 1, + ACTIONS(2190), 1, sym_identifier, - STATE(1025), 1, + ACTIONS(2196), 1, + anon_sym_await, + STATE(1003), 1, sym_string, - STATE(1325), 1, + STATE(1300), 1, sym_list_splat_pattern, - STATE(1627), 1, + STATE(1616), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(2158), 2, + ACTIONS(2194), 2, anon_sym_match, anon_sym_type, - STATE(1368), 2, + STATE(1435), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2156), 3, + ACTIONS(2192), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(316), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82083,49 +81897,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66173] = 16, - ACTIONS(737), 1, + [66324] = 16, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(709), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(717), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(719), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1275), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(977), 1, sym_string, - STATE(1262), 1, + STATE(1124), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1407), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(705), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(715), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(703), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(711), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(697), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82142,110 +81956,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66248] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2176), 1, - anon_sym_await, - ACTIONS(2282), 1, - sym_identifier, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1616), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2174), 2, - anon_sym_match, - anon_sym_type, - STATE(639), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2172), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [66327] = 16, - ACTIONS(737), 1, - anon_sym_LPAREN, + [66399] = 16, ACTIONS(745), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(761), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(1098), 1, sym_string, - STATE(1263), 1, + STATE(1282), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1423), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(751), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(749), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(743), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82262,49 +82015,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66402] = 16, - ACTIONS(690), 1, + [66474] = 16, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(761), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(983), 1, + STATE(1098), 1, sym_string, - STATE(1019), 1, + STATE(1283), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1423), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(751), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(749), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(743), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82321,53 +82074,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66477] = 16, - ACTIONS(67), 1, + [66549] = 18, + ACTIONS(303), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(320), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2128), 1, + anon_sym_await, + ACTIONS(2296), 1, + sym_identifier, + STATE(1003), 1, sym_string, - STATE(973), 1, - sym_primary_expression, - STATE(1135), 1, + STATE(1300), 1, sym_list_splat_pattern, + STATE(1614), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(314), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(2126), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1293), 2, + sym_attribute, + sym_subscript, + ACTIONS(308), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(2124), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(316), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1392), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82380,49 +82135,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66552] = 16, - ACTIONS(690), 1, + [66628] = 16, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(757), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(761), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(763), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1345), 1, anon_sym_STAR, - STATE(983), 1, + STATE(1098), 1, sym_string, - STATE(993), 1, + STATE(1284), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1423), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(751), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(759), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(749), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(755), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(743), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1425), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82439,49 +82194,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66627] = 16, - ACTIONS(783), 1, + [66703] = 16, + ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(690), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(692), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(961), 1, sym_string, - STATE(1102), 1, + STATE(1025), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(688), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(684), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(672), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1251), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82498,594 +82253,171 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66702] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + [66778] = 5, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2168), 1, - anon_sym_await, - ACTIONS(2266), 1, - sym_identifier, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1632), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2270), 2, - anon_sym_match, - anon_sym_type, - STATE(1248), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + STATE(954), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2300), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2298), 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_TILDE, - ACTIONS(2268), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [66781] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + 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, + [66830] = 20, + ACTIONS(2084), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(2092), 1, + anon_sym_STAR_STAR, + ACTIONS(2102), 1, + anon_sym_PIPE, + ACTIONS(2104), 1, + anon_sym_not, + ACTIONS(2106), 1, + anon_sym_AMP, + ACTIONS(2108), 1, + anon_sym_CARET, + ACTIONS(2110), 1, + anon_sym_is, + ACTIONS(2302), 1, + anon_sym_DOT, + ACTIONS(2304), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2154), 1, - sym_identifier, - ACTIONS(2160), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1624), 1, - sym_primary_expression, + STATE(1544), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2158), 2, - anon_sym_match, - anon_sym_type, - STATE(1368), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(2086), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2088), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2100), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2156), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, + ACTIONS(2112), 2, + anon_sym_LT, + anon_sym_GT, + STATE(909), 2, + sym__not_in, + sym__is_not, + STATE(1076), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [66860] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + ACTIONS(2098), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2090), 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(2080), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [66912] = 21, + ACTIONS(2094), 1, + anon_sym_EQ, + ACTIONS(2104), 1, + anon_sym_not, + ACTIONS(2306), 1, + anon_sym_DOT, + ACTIONS(2308), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(2316), 1, + anon_sym_STAR_STAR, + ACTIONS(2318), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2144), 1, - anon_sym_await, - ACTIONS(2284), 1, - sym_identifier, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1631), 1, - sym_primary_expression, + ACTIONS(2324), 1, + anon_sym_PIPE, + ACTIONS(2326), 1, + anon_sym_AMP, + ACTIONS(2328), 1, + anon_sym_CARET, + ACTIONS(2330), 1, + anon_sym_is, + STATE(1555), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2208), 2, - anon_sym_match, - anon_sym_type, - STATE(1435), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2206), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [66939] = 16, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, - anon_sym_await, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1355), 1, - anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1103), 1, - sym_primary_expression, - STATE(1316), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(789), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(787), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(781), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1418), 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, - [67014] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2144), 1, - anon_sym_await, - ACTIONS(2284), 1, - sym_identifier, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1629), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2208), 2, - anon_sym_match, - anon_sym_type, - STATE(1435), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2206), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [67093] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_await, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(969), 1, - sym_string, - STATE(986), 1, - sym_primary_expression, - STATE(1135), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1081), 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, - [67168] = 21, - ACTIONS(2110), 1, - anon_sym_as, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2304), 1, - anon_sym_PIPE, - ACTIONS(2306), 1, - anon_sym_AMP, - ACTIONS(2308), 1, - anon_sym_CARET, - ACTIONS(2310), 1, - anon_sym_is, - STATE(1574), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2310), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(2312), 2, - anon_sym_LT, - anon_sym_GT, - STATE(932), 2, - sym__not_in, - sym__is_not, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2294), 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(2096), 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, - [67253] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_await, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(969), 1, - sym_string, - STATE(988), 1, - sym_primary_expression, - STATE(1135), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1081), 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, - [67328] = 5, - ACTIONS(2318), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(966), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2314), 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, - [67380] = 21, - ACTIONS(2110), 1, - anon_sym_EQ, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, - ACTIONS(2339), 1, - anon_sym_PIPE, - ACTIONS(2341), 1, - anon_sym_AMP, - ACTIONS(2343), 1, - anon_sym_CARET, - ACTIONS(2345), 1, - anon_sym_is, - STATE(1573), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2325), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2327), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2337), 2, + ACTIONS(2322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2347), 2, + ACTIONS(2332), 2, anon_sym_LT, anon_sym_GT, - STATE(957), 2, + STATE(893), 2, sym__not_in, sym__is_not, - STATE(1315), 2, + STATE(1307), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2320), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2329), 6, + ACTIONS(2314), 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(2096), 7, + ACTIONS(2080), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -83093,84 +82425,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [67464] = 20, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2118), 1, - anon_sym_PIPE, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2122), 1, - anon_sym_AMP, - ACTIONS(2124), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_is, - ACTIONS(2349), 1, - anon_sym_DOT, - ACTIONS(2351), 1, - anon_sym_LBRACK, - STATE(1564), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2102), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2104), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2116), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2128), 2, - anon_sym_LT, - anon_sym_GT, - STATE(965), 2, - sym__not_in, - sym__is_not, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2106), 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(2096), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [67546] = 5, + [66996] = 5, ACTIONS(81), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(970), 2, + STATE(950), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(1554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 31, + ACTIONS(1549), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -83202,22 +82472,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67598] = 5, - ACTIONS(81), 1, + [67048] = 5, + ACTIONS(2338), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(966), 2, + STATE(954), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + ACTIONS(2336), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 31, + ACTIONS(2334), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -83249,62 +82519,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67650] = 21, - ACTIONS(2110), 1, + [67100] = 21, + ACTIONS(2094), 1, anon_sym_EQ, - ACTIONS(2120), 1, + ACTIONS(2104), 1, anon_sym_not, - ACTIONS(2357), 1, + ACTIONS(2341), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2353), 1, anon_sym_LBRACK, - ACTIONS(2375), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2363), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2365), 1, anon_sym_is, - STATE(1572), 1, + STATE(1556), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2347), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2383), 2, + ACTIONS(2367), 2, anon_sym_LT, anon_sym_GT, - STATE(904), 2, + STATE(859), 2, sym__not_in, sym__is_not, - STATE(1397), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2355), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2365), 6, + ACTIONS(2349), 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(2096), 7, + ACTIONS(2080), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -83312,62 +82582,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_and, anon_sym_or, - [67734] = 21, - ACTIONS(2110), 1, + [67184] = 21, + ACTIONS(2094), 1, anon_sym_as, - ACTIONS(2120), 1, + ACTIONS(2104), 1, anon_sym_not, - ACTIONS(2385), 1, + ACTIONS(2369), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2371), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2379), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, + ACTIONS(2387), 1, anon_sym_PIPE, - ACTIONS(2405), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2407), 1, + ACTIONS(2391), 1, anon_sym_CARET, - ACTIONS(2409), 1, + ACTIONS(2393), 1, anon_sym_is, - STATE(1589), 1, + STATE(1572), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2373), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2391), 2, + ACTIONS(2375), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2401), 2, + ACTIONS(2385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2411), 2, + ACTIONS(2395), 2, anon_sym_LT, anon_sym_GT, - STATE(876), 2, + STATE(914), 2, sym__not_in, sym__is_not, - STATE(1409), 2, + STATE(1303), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 3, + ACTIONS(2383), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2393), 6, + ACTIONS(2377), 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(2096), 7, + ACTIONS(2080), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -83375,28 +82645,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [67818] = 8, - ACTIONS(2098), 1, + [67268] = 8, + ACTIONS(2082), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2084), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2092), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2096), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1084), 2, + STATE(1076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2399), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 27, + ACTIONS(2397), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83424,44 +82694,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67875] = 12, - ACTIONS(2098), 1, + [67325] = 11, + ACTIONS(2082), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2084), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2092), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2096), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + ACTIONS(2086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2104), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2116), 2, + ACTIONS(2100), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1084), 2, + STATE(1076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2098), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2399), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 20, + ACTIONS(2397), 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, @@ -83471,34 +82739,40 @@ static const uint16_t ts_small_parse_table[] = { 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, - [67940] = 8, - ACTIONS(2098), 1, + [67388] = 10, + ACTIONS(2082), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2084), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2092), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2096), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1084), 2, + ACTIONS(2086), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_STAR, + ACTIONS(2098), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 27, + ACTIONS(2397), 24, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83508,15 +82782,12 @@ 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, @@ -83526,28 +82797,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67997] = 8, - ACTIONS(2098), 1, + [67449] = 8, + ACTIONS(2082), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2084), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2092), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2096), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1084), 2, + STATE(1076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2403), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 27, + ACTIONS(2401), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83575,37 +82846,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68054] = 5, - ACTIONS(823), 1, + [67506] = 5, + ACTIONS(692), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(978), 2, + STATE(967), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(1554), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(1549), 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, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83621,22 +82891,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68105] = 5, - ACTIONS(823), 1, + sym_type_conversion, + [67557] = 5, + ACTIONS(741), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(979), 2, + STATE(971), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + ACTIONS(2300), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 30, + ACTIONS(2298), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83648,10 +82919,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, @@ -83667,22 +82938,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68156] = 5, - ACTIONS(2425), 1, + [67608] = 5, + ACTIONS(741), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(979), 2, + STATE(962), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(1554), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 30, + ACTIONS(1549), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83694,10 +82965,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, @@ -83713,83 +82984,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68207] = 5, - ACTIONS(733), 1, - sym_string_start, + [67659] = 12, + ACTIONS(2082), 1, + anon_sym_DOT, + ACTIONS(2084), 1, + anon_sym_LPAREN, + ACTIONS(2092), 1, + anon_sym_STAR_STAR, + ACTIONS(2096), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(981), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2086), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2088), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2100), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2098), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_from, 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68258] = 5, - ACTIONS(733), 1, - sym_string_start, + [67724] = 8, + ACTIONS(2082), 1, + anon_sym_DOT, + ACTIONS(2084), 1, + anon_sym_LPAREN, + ACTIONS(2092), 1, + anon_sym_STAR_STAR, + ACTIONS(2096), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(982), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, - anon_sym_as, + STATE(1076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2405), 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_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, @@ -83805,68 +83086,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68309] = 5, - ACTIONS(2428), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(982), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, - anon_sym_as, + [67781] = 14, + ACTIONS(2082), 1, + anon_sym_DOT, + ACTIONS(2084), 1, + anon_sym_LPAREN, + ACTIONS(2092), 1, + anon_sym_STAR_STAR, + ACTIONS(2096), 1, + anon_sym_LBRACK, + ACTIONS(2106), 1, + anon_sym_AMP, + ACTIONS(2108), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2086), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2088), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2100), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2098), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_from, 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68360] = 5, - ACTIONS(708), 1, + [67850] = 5, + ACTIONS(692), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(984), 2, + STATE(973), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(2300), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(2298), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83897,82 +83187,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [68411] = 5, - ACTIONS(708), 1, - sym_string_start, + [67901] = 15, + ACTIONS(2082), 1, + anon_sym_DOT, + ACTIONS(2084), 1, + anon_sym_LPAREN, + ACTIONS(2092), 1, + anon_sym_STAR_STAR, + ACTIONS(2096), 1, + anon_sym_LBRACK, + ACTIONS(2102), 1, + anon_sym_PIPE, + ACTIONS(2106), 1, + anon_sym_AMP, + ACTIONS(2108), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(985), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + ACTIONS(2086), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2088), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2100), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2098), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2411), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2409), 17, + 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_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, - [68462] = 5, - ACTIONS(2431), 1, + [67972] = 5, + ACTIONS(807), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(985), 2, + STATE(974), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(2300), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 30, + ACTIONS(2298), 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, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83988,38 +83289,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68513] = 8, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2112), 1, - anon_sym_LBRACK, + [68023] = 5, + ACTIONS(807), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + STATE(969), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1554), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1549), 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, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -84038,49 +83335,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68570] = 11, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2112), 1, - anon_sym_LBRACK, + [68074] = 5, + ACTIONS(2413), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + STATE(971), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2336), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2116), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2334), 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, + 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, @@ -84090,104 +83381,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68633] = 15, - ACTIONS(2098), 1, + [68125] = 20, + ACTIONS(2104), 1, + anon_sym_not, + ACTIONS(2416), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2418), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2426), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2428), 1, anon_sym_LBRACK, - ACTIONS(2118), 1, + ACTIONS(2434), 1, anon_sym_PIPE, - ACTIONS(2122), 1, + ACTIONS(2436), 1, anon_sym_AMP, - ACTIONS(2124), 1, + ACTIONS(2438), 1, anon_sym_CARET, + ACTIONS(2440), 1, + anon_sym_is, + STATE(1562), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + ACTIONS(2420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2104), 2, + ACTIONS(2422), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2116), 2, + ACTIONS(2432), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1084), 2, + ACTIONS(2442), 2, + anon_sym_LT, + anon_sym_GT, + STATE(927), 2, + sym__not_in, + sym__is_not, + STATE(1430), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2430), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, + ACTIONS(2424), 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(2080), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [68206] = 5, + ACTIONS(2444), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(973), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2336), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2334), 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, - [68704] = 10, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2112), 1, - anon_sym_LBRACK, + sym_type_conversion, + [68257] = 5, + ACTIONS(2447), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + STATE(974), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2336), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2334), 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, + 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, @@ -84197,43 +83534,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68765] = 14, - ACTIONS(2098), 1, + [68308] = 13, + ACTIONS(2082), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2084), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2092), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2096), 1, anon_sym_LBRACK, - ACTIONS(2122), 1, - anon_sym_AMP, - ACTIONS(2124), 1, + ACTIONS(2108), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + ACTIONS(2086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2104), 2, + ACTIONS(2088), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2116), 2, + ACTIONS(2100), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1084), 2, + STATE(1076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2098), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2399), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(2397), 19, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -84246,155 +83581,130 @@ 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, - [68834] = 13, - ACTIONS(2098), 1, + [68375] = 8, + ACTIONS(2082), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2084), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2092), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2096), 1, anon_sym_LBRACK, - ACTIONS(2124), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2104), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2116), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1084), 2, + STATE(1076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2399), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 19, + ACTIONS(2397), 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, - [68901] = 20, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2458), 1, - anon_sym_AMP, - ACTIONS(2460), 1, - anon_sym_CARET, - ACTIONS(2462), 1, - anon_sym_is, - STATE(1578), 1, - aux_sym_comparison_operator_repeat1, + [68432] = 5, + ACTIONS(719), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2442), 2, + STATE(994), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1554), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2464), 2, anon_sym_LT, anon_sym_GT, - STATE(945), 2, - sym__not_in, - sym__is_not, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, + ACTIONS(1549), 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, - ACTIONS(2446), 6, - anon_sym_in, + 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(2096), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [68982] = 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, + [68482] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(1628), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(1626), 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, @@ -84415,36 +83725,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [69038] = 5, - ACTIONS(328), 1, - sym_string_start, + [68528] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + ACTIONS(1668), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 29, + 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_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, @@ -84460,36 +83767,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69088] = 5, - ACTIONS(2466), 1, - sym_string_start, + sym_type_conversion, + [68574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(1672), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 29, + 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_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, @@ -84505,37 +83810,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69138] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, - anon_sym_LBRACK, - STATE(2076), 1, - sym_type_parameter, + sym_type_conversion, + [68620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1672), 6, 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(1670), 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_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84551,37 +83853,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69190] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, - anon_sym_LBRACK, - STATE(2090), 1, - sym_type_parameter, + sym_type_conversion, + [68666] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(1679), 6, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1677), 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_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84597,28 +83896,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69242] = 8, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + sym_type_conversion, + [68712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(1679), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(1677), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84626,6 +83918,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84645,77 +83939,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69298] = 8, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, + sym_type_conversion, + [68758] = 20, + ACTIONS(2104), 1, + anon_sym_not, + ACTIONS(2308), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2316), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2324), 1, + anon_sym_PIPE, + ACTIONS(2326), 1, + anon_sym_AMP, + ACTIONS(2328), 1, + anon_sym_CARET, + ACTIONS(2330), 1, + anon_sym_is, + ACTIONS(2369), 1, + anon_sym_DOT, + ACTIONS(2381), 1, anon_sym_LBRACK, + STATE(1555), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, - anon_sym_as, + ACTIONS(2310), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2312), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2322), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2332), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 26, + STATE(893), 2, + sym__not_in, + sym__is_not, + STATE(1307), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2320), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2080), 6, + anon_sym_RPAREN, 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_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, + ACTIONS(2314), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69354] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [68838] = 5, + ACTIONS(785), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(986), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1554), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1549), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -84737,23 +84045,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69402] = 3, + [68888] = 5, + ACTIONS(785), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + STATE(987), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2300), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(2298), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -84780,39 +84090,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69448] = 8, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + [68938] = 5, + ACTIONS(2450), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_as, + STATE(987), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2336), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2334), 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84828,48 +84135,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69504] = 11, - ACTIONS(2286), 1, + [68988] = 20, + ACTIONS(2104), 1, + anon_sym_not, + ACTIONS(2254), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2266), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2426), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + ACTIONS(2434), 1, + anon_sym_PIPE, + ACTIONS(2436), 1, + anon_sym_AMP, + ACTIONS(2438), 1, + anon_sym_CARET, + ACTIONS(2440), 1, + anon_sym_is, + STATE(1562), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2302), 2, + ACTIONS(2422), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2432), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1171), 2, + ACTIONS(2442), 2, + anon_sym_LT, + anon_sym_GT, + STATE(927), 2, + sym__not_in, + sym__is_not, + STATE(1430), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, + ACTIONS(2430), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 21, + ACTIONS(2080), 6, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + ACTIONS(2424), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69068] = 5, + ACTIONS(2453), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(989), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2336), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2334), 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, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84879,83 +84240,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69566] = 15, - ACTIONS(2286), 1, + [69118] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(269), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(2288), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2296), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(2304), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2306), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2308), 1, 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, + [69166] = 5, + ACTIONS(2456), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + STATE(991), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2336), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 16, + ACTIONS(2334), 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_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, - [69636] = 8, - ACTIONS(2286), 1, + [69216] = 8, + ACTIONS(2254), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2256), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2264), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1171), 2, + STATE(1166), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2403), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2401), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84963,10 +84358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84982,33 +84377,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69692] = 10, - ACTIONS(2286), 1, + [69272] = 8, + ACTIONS(2254), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2256), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2264), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1171), 2, + STATE(1166), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2407), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 23, + ACTIONS(2405), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85016,13 +84406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + 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, @@ -85032,187 +84425,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69752] = 14, - ACTIONS(2286), 1, + [69328] = 5, + ACTIONS(719), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(991), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2300), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2298), 29, anon_sym_DOT, - ACTIONS(2288), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + 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, - ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(2306), 1, + 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, - ACTIONS(2308), 1, 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, + [69378] = 8, + ACTIONS(2254), 1, + anon_sym_DOT, + ACTIONS(2256), 1, + anon_sym_LPAREN, + ACTIONS(2264), 1, + anon_sym_STAR_STAR, + ACTIONS(2266), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1171), 2, + STATE(1166), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2399), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2397), 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_RBRACK, + 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, - [69820] = 13, - ACTIONS(2286), 1, + [69434] = 11, + ACTIONS(2254), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2256), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2264), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(2308), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2258), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, + ACTIONS(2270), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1171), 2, + STATE(1166), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, + ACTIONS(2268), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2399), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(2397), 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_RBRACK, 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, - [69886] = 12, - ACTIONS(2286), 1, + [69496] = 15, + ACTIONS(2254), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2256), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2264), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, + ACTIONS(2272), 1, + anon_sym_PIPE, + ACTIONS(2274), 1, + anon_sym_AMP, + ACTIONS(2276), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2258), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2292), 2, + ACTIONS(2260), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2302), 2, + ACTIONS(2270), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1171), 2, + STATE(1166), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, + ACTIONS(2268), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2411), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 19, + ACTIONS(2409), 16, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_RBRACK, 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, - [69950] = 8, - ACTIONS(2238), 1, + [69566] = 8, + ACTIONS(2254), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2256), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2264), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1250), 2, + STATE(1166), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2399), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2397), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85239,28 +84672,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70006] = 8, - ACTIONS(2238), 1, + [69622] = 10, + ACTIONS(2254), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2256), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2264), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1250), 2, + ACTIONS(2258), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1166), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2268), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 26, + ACTIONS(2397), 23, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85269,15 +84707,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85287,168 +84722,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70062] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [69682] = 14, + ACTIONS(2254), 1, + anon_sym_DOT, + ACTIONS(2256), 1, + anon_sym_LPAREN, + ACTIONS(2264), 1, + anon_sym_STAR_STAR, + ACTIONS(2266), 1, + anon_sym_LBRACK, + ACTIONS(2274), 1, + anon_sym_AMP, + ACTIONS(2276), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2258), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2260), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2270), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1166), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2268), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2397), 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, - [70110] = 8, - ACTIONS(2210), 1, + [69750] = 13, + ACTIONS(2254), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2256), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2264), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, + ACTIONS(2276), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2258), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2260), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2270), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1166), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2268), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2397), 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_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, - sym_type_conversion, - [70166] = 8, - ACTIONS(2210), 1, + [69816] = 12, + ACTIONS(2254), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2256), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2264), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2258), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2260), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2270), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1166), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2268), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 26, + ACTIONS(2397), 19, 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_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, - sym_type_conversion, - [70222] = 3, + [69880] = 5, + ACTIONS(320), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + STATE(1023), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(1549), 29, 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, @@ -85470,33 +84926,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70268] = 3, + [69930] = 6, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(2459), 1, + anon_sym_LBRACK, + STATE(2016), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 6, + ACTIONS(271), 6, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 31, + ACTIONS(269), 28, 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, @@ -85512,100 +84972,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70314] = 12, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2240), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_STAR_STAR, - ACTIONS(2250), 1, + [69982] = 6, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, + ACTIONS(2459), 1, anon_sym_LBRACK, + STATE(2017), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, + ACTIONS(1554), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2244), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2254), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1250), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2252), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 19, + ACTIONS(1549), 28, + 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_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, - [70378] = 11, - ACTIONS(2210), 1, + [70034] = 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, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2226), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1205), 2, + STATE(1220), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, + ACTIONS(2403), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 21, + ACTIONS(2401), 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, @@ -85615,86 +85066,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70440] = 15, - ACTIONS(2210), 1, + [70090] = 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(2228), 1, - anon_sym_PIPE, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, 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, - STATE(1205), 2, + STATE(1220), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_EQ, + ACTIONS(2407), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 16, + ACTIONS(2405), 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, - sym_type_conversion, - [70510] = 5, - ACTIONS(2479), 1, - sym_string_start, + [70146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1020), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, - anon_sym_as, + ACTIONS(2463), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 29, + ACTIONS(2461), 32, + sym__newline, + sym_string_start, + 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, @@ -85716,46 +85157,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70560] = 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, + [70192] = 4, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(1554), 6, anon_sym_STAR, - anon_sym_SLASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 23, + ACTIONS(1549), 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_DASH, - anon_sym_PIPE, - 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, @@ -85765,151 +85201,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70620] = 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, + [70240] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2467), 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(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2465), 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, - 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, - [70688] = 13, - ACTIONS(2210), 1, + [70286] = 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(2232), 1, - anon_sym_CARET, 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, - STATE(1205), 2, + STATE(1220), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, + ACTIONS(2399), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(2397), 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, - sym_type_conversion, - [70754] = 12, - ACTIONS(2210), 1, + [70342] = 11, + 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, - ACTIONS(2214), 2, + ACTIONS(2164), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2226), 2, + ACTIONS(2176), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1205), 2, + STATE(1220), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2174), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, + ACTIONS(2399), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 19, + ACTIONS(2397), 21, 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, @@ -85918,87 +85336,101 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70818] = 5, - ACTIONS(328), 1, - sym_string_start, + [70404] = 15, + 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(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, - STATE(994), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 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(1220), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2174), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2411), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2409), 16, 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_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, - [70868] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [70474] = 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(1570), 6, + STATE(1220), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2397), 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, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86014,20 +85446,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70916] = 3, + [70530] = 10, + 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(1671), 6, - anon_sym_as, + ACTIONS(2164), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1220), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2174), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 23, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -86035,9 +85480,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86045,8 +85487,6 @@ 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, @@ -86056,159 +85496,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70962] = 3, + [70590] = 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, - ACTIONS(1694), 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(1220), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2174), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 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, - sym_type_conversion, - [71008] = 3, + [70658] = 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(1643), 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(1220), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2174), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 18, 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, - sym_type_conversion, - [71054] = 3, + [70724] = 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, - ACTIONS(1643), 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(1220), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2174), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 19, 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, - sym_type_conversion, - [71100] = 3, + [70788] = 8, + ACTIONS(2198), 1, + anon_sym_DOT, + ACTIONS(2200), 1, + anon_sym_LPAREN, + ACTIONS(2208), 1, + anon_sym_STAR_STAR, + ACTIONS(2210), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 6, - anon_sym_as, + STATE(1269), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2403), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2401), 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, @@ -86229,29 +85703,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71146] = 3, + [70844] = 8, + ACTIONS(2198), 1, + anon_sym_DOT, + ACTIONS(2200), 1, + anon_sym_LPAREN, + ACTIONS(2208), 1, + anon_sym_STAR_STAR, + ACTIONS(2210), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 6, - anon_sym_as, + STATE(1269), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2405), 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, @@ -86272,90 +85751,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71192] = 20, - ACTIONS(2120), 1, + [70900] = 20, + ACTIONS(2104), 1, anon_sym_not, - ACTIONS(2323), 1, + ACTIONS(2160), 1, + anon_sym_DOT, + ACTIONS(2172), 1, + anon_sym_LBRACK, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2208), 1, anon_sym_STAR_STAR, - ACTIONS(2339), 1, + ACTIONS(2216), 1, anon_sym_PIPE, - ACTIONS(2341), 1, + ACTIONS(2218), 1, anon_sym_AMP, - ACTIONS(2343), 1, + ACTIONS(2220), 1, anon_sym_CARET, - ACTIONS(2345), 1, + ACTIONS(2222), 1, anon_sym_is, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2397), 1, - anon_sym_LBRACK, - STATE(1573), 1, + STATE(1558), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2327), 2, + ACTIONS(2204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2337), 2, + ACTIONS(2214), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2347), 2, + ACTIONS(2224), 2, anon_sym_LT, anon_sym_GT, - STATE(957), 2, + STATE(858), 2, sym__not_in, sym__is_not, - STATE(1315), 2, + STATE(1269), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2212), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2096), 6, - anon_sym_RPAREN, + ACTIONS(2080), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - ACTIONS(2329), 6, + ACTIONS(2206), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71272] = 5, - ACTIONS(801), 1, - sym_string_start, + [70980] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1035), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(269), 30, + 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, @@ -86377,30 +85855,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71322] = 5, - ACTIONS(801), 1, + [71028] = 5, + ACTIONS(320), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1036), 2, + STATE(989), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + ACTIONS(2300), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 29, + ACTIONS(2298), 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, @@ -86422,36 +85900,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71372] = 5, - ACTIONS(2482), 1, - sym_string_start, + [71078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1036), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(1687), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 29, + ACTIONS(1685), 31, 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, @@ -86467,99 +85942,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71422] = 20, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2250), 1, - anon_sym_LBRACK, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2458), 1, - anon_sym_AMP, - ACTIONS(2460), 1, - anon_sym_CARET, - ACTIONS(2462), 1, - anon_sym_is, - STATE(1578), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2442), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2464), 2, - anon_sym_LT, - anon_sym_GT, - STATE(945), 2, - sym__not_in, - sym__is_not, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2096), 6, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - ACTIONS(2446), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [71502] = 8, - ACTIONS(2238), 1, + sym_type_conversion, + [71124] = 8, + ACTIONS(2198), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2208), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2210), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1250), 2, + STATE(1269), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_as, + ACTIONS(2399), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2397), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86575,45 +85990,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71558] = 11, - ACTIONS(2238), 1, + sym_type_conversion, + [71180] = 11, + ACTIONS(2198), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2208), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2210), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2254), 2, + ACTIONS(2214), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1250), 2, + STATE(1269), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2252), 3, + ACTIONS(2212), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 21, + ACTIONS(2397), 21, 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_RBRACK, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86626,52 +86041,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71620] = 15, - ACTIONS(2238), 1, + sym_type_conversion, + [71242] = 15, + ACTIONS(2198), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2208), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2210), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, + ACTIONS(2216), 1, anon_sym_PIPE, - ACTIONS(2258), 1, + ACTIONS(2218), 1, anon_sym_AMP, - ACTIONS(2260), 1, + ACTIONS(2220), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2244), 2, + ACTIONS(2204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2254), 2, + ACTIONS(2214), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1250), 2, + STATE(1269), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2252), 3, + ACTIONS(2212), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_as, + ACTIONS(2411), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 16, + ACTIONS(2409), 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_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86681,39 +86096,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71690] = 8, - ACTIONS(2238), 1, + sym_type_conversion, + [71312] = 8, + ACTIONS(2198), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2208), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2210), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1250), 2, + STATE(1269), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_as, + ACTIONS(2399), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2397), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86729,43 +86144,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71746] = 10, - ACTIONS(2238), 1, + sym_type_conversion, + [71368] = 10, + ACTIONS(2198), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2208), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2210), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1250), 2, + STATE(1269), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2252), 3, + ACTIONS(2212), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 23, + ACTIONS(2397), 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_RBRACK, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86779,51 +86194,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71806] = 14, - ACTIONS(2238), 1, + sym_type_conversion, + [71428] = 14, + ACTIONS(2198), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2208), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2210), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2218), 1, anon_sym_AMP, - ACTIONS(2260), 1, + ACTIONS(2220), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2244), 2, + ACTIONS(2204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2254), 2, + ACTIONS(2214), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1250), 2, + STATE(1269), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2252), 3, + ACTIONS(2212), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2397), 17, 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_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86833,128 +86248,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71874] = 5, - ACTIONS(779), 1, - sym_string_start, + sym_type_conversion, + [71496] = 13, + ACTIONS(2198), 1, + anon_sym_DOT, + ACTIONS(2200), 1, + anon_sym_LPAREN, + ACTIONS(2208), 1, + anon_sym_STAR_STAR, + ACTIONS(2210), 1, + anon_sym_LBRACK, + ACTIONS(2220), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1046), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2214), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1269), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2212), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2397), 18, 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, - [71924] = 13, - ACTIONS(2238), 1, + sym_type_conversion, + [71562] = 12, + ACTIONS(2198), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2208), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2210), 1, anon_sym_LBRACK, - ACTIONS(2260), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2244), 2, + ACTIONS(2204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2254), 2, + ACTIONS(2214), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1250), 2, + STATE(1269), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2252), 3, + ACTIONS(2212), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(2397), 19, 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_RBRACE, 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, - [71990] = 5, - ACTIONS(779), 1, - sym_string_start, + sym_type_conversion, + [71626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1020), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, - anon_sym_as, + ACTIONS(2471), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 29, + ACTIONS(2469), 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, @@ -86976,98 +86396,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72040] = 20, - ACTIONS(2120), 1, - anon_sym_not, - 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, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2298), 1, - anon_sym_LBRACK, - STATE(1576), 1, - aux_sym_comparison_operator_repeat1, + [71671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(271), 5, anon_sym_STAR, + anon_sym_EQ, 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(954), 2, - sym__not_in, - sym__is_not, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2096), 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, - [72120] = 8, - ACTIONS(2210), 1, + ACTIONS(269), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(2212), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 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, @@ -87083,18 +86438,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72176] = 3, + [71716] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(1679), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 31, + ACTIONS(1677), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87126,17 +86480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72221] = 3, + [71761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1679), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 31, + ACTIONS(1677), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87168,34 +86522,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72266] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [71806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, - anon_sym_as, + ACTIONS(2475), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87211,34 +86564,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72313] = 8, - ACTIONS(2357), 1, + [71851] = 8, + ACTIONS(2369), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2371), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2379), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1397), 2, + STATE(1303), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2399), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2397), 25, + 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_AT, anon_sym_DASH, @@ -87258,44 +86611,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72368] = 8, - ACTIONS(2357), 1, + [71906] = 11, + ACTIONS(2369), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2371), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2379), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2373), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2385), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1303), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2383), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 25, + ACTIONS(2397), 20, + 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_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, @@ -87305,33 +86661,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72423] = 3, + [71967] = 5, + ACTIONS(1551), 1, + anon_sym_COMMA, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, - anon_sym_as, + ACTIONS(1554), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 31, - sym_string_start, + ACTIONS(1549), 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_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, @@ -87347,46 +86704,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72468] = 10, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + sym_type_conversion, + [72016] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2479), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, - anon_sym_RPAREN, + ACTIONS(2477), 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, 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, @@ -87396,36 +86747,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72527] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(674), 1, - anon_sym_COLON, + [72061] = 8, + ACTIONS(2369), 1, + anon_sym_DOT, + ACTIONS(2371), 1, + anon_sym_LPAREN, + ACTIONS(2379), 1, + anon_sym_STAR_STAR, + ACTIONS(2381), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, + STATE(1303), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2405), 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_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, @@ -87441,36 +86794,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72578] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(674), 1, - anon_sym_COLON, + [72116] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, - anon_sym_as, + ACTIONS(2483), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(2481), 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, @@ -87486,122 +86836,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72629] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(1660), 1, - anon_sym_COLON, + [72161] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, - anon_sym_as, + ACTIONS(1637), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1640), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(1634), 14, 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, - [72680] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1690), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1688), 31, + ACTIONS(1630), 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, - [72725] = 8, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, + [72210] = 6, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(2485), 1, anon_sym_LBRACK, + STATE(1929), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(269), 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_else, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87620,47 +86925,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72780] = 11, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, + [72261] = 6, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, + ACTIONS(2485), 1, anon_sym_LBRACK, + STATE(1930), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(1554), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 20, + ACTIONS(1549), 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_else, 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_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87670,50 +86970,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72841] = 15, - ACTIONS(2357), 1, + [72312] = 15, + ACTIONS(2369), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2371), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2379), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, - ACTIONS(2375), 1, + ACTIONS(2387), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2391), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2373), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2375), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2385), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1303), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2383), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_EQ, + ACTIONS(2411), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 15, + ACTIONS(2409), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, @@ -87724,34 +87024,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72910] = 8, - ACTIONS(2357), 1, + [72381] = 8, + ACTIONS(2369), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2371), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2379), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1397), 2, + STATE(1303), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2399), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(2397), 25, + 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_AT, anon_sym_DASH, @@ -87771,46 +87071,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72965] = 10, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [72436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(1664), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, + ACTIONS(1659), 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, 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, @@ -87820,33 +87113,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73024] = 3, + [72481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, - anon_sym_as, + ACTIONS(2489), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 31, - sym_string_start, + ACTIONS(2487), 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, @@ -87862,31 +87155,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73069] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [72526] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(1687), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1685), 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, @@ -87905,31 +87197,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73116] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [72571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(1554), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1549), 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, @@ -87948,31 +87239,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73163] = 4, - ACTIONS(1572), 1, + [72616] = 6, + ACTIONS(284), 1, anon_sym_COLON_EQ, + ACTIONS(2491), 1, + anon_sym_LBRACK, + STATE(1880), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, - anon_sym_as, + ACTIONS(271), 6, anon_sym_STAR, anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(269), 27, + sym__newline, + anon_sym_SEMI, 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, anon_sym_PIPE, @@ -87991,240 +87284,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73210] = 14, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_CARET, + [72667] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2495), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 16, + ACTIONS(2493), 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, + 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, - [73277] = 13, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_CARET, + [72712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2499), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2497), 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, + 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, - [73342] = 15, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2403), 1, - anon_sym_PIPE, - ACTIONS(2405), 1, - anon_sym_AMP, - ACTIONS(2407), 1, - anon_sym_CARET, + [72757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2503), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2401), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 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, - [73411] = 12, - ACTIONS(2357), 1, + ACTIONS(2501), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(2359), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 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, - [73474] = 3, + [72802] = 6, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(658), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(651), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(653), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(694), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88243,33 +87455,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73519] = 3, + [72853] = 6, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(658), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(651), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(653), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 31, - sym_string_start, + ACTIONS(694), 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, @@ -88285,30 +87500,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73564] = 3, + [72904] = 8, + ACTIONS(2341), 1, + anon_sym_DOT, + ACTIONS(2343), 1, + anon_sym_LPAREN, + ACTIONS(2351), 1, + anon_sym_STAR_STAR, + ACTIONS(2353), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + STATE(1286), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2397), 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88327,39 +87547,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73609] = 3, + [72959] = 11, + ACTIONS(2341), 1, + anon_sym_DOT, + ACTIONS(2343), 1, + anon_sym_LPAREN, + ACTIONS(2351), 1, + anon_sym_STAR_STAR, + ACTIONS(2353), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(2345), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2357), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1286), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2355), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2397), 20, 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, @@ -88369,30 +87597,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73654] = 3, + [73020] = 15, + ACTIONS(2341), 1, + anon_sym_DOT, + ACTIONS(2343), 1, + anon_sym_LPAREN, + ACTIONS(2351), 1, + anon_sym_STAR_STAR, + ACTIONS(2353), 1, + anon_sym_LBRACK, + ACTIONS(2359), 1, + anon_sym_PIPE, + ACTIONS(2361), 1, + anon_sym_AMP, + ACTIONS(2363), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2345), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2347), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2357), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1286), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2355), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2411), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2409), 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, + [73089] = 8, + ACTIONS(2341), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2343), 1, anon_sym_LPAREN, + ACTIONS(2351), 1, + anon_sym_STAR_STAR, + ACTIONS(2353), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1286), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2397), 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88411,21 +87698,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73699] = 3, + [73144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2467), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2465), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -88438,6 +87723,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, @@ -88453,21 +87739,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73744] = 3, + sym_type_conversion, + [73189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2463), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2461), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -88480,6 +87765,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, @@ -88495,39 +87781,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73789] = 3, + sym_type_conversion, + [73234] = 10, + ACTIONS(2341), 1, + anon_sym_DOT, + ACTIONS(2343), 1, + anon_sym_LPAREN, + ACTIONS(2351), 1, + anon_sym_STAR_STAR, + ACTIONS(2353), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2345), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1286), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2355), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2397), 22, 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, @@ -88537,30 +87831,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73834] = 3, + [73293] = 8, + ACTIONS(2306), 1, + anon_sym_DOT, + ACTIONS(2308), 1, + anon_sym_LPAREN, + ACTIONS(2316), 1, + anon_sym_STAR_STAR, + ACTIONS(2318), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + STATE(1307), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2397), 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, @@ -88579,22 +87878,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73879] = 5, - ACTIONS(1567), 1, - anon_sym_COMMA, - ACTIONS(1572), 1, + [73348] = 6, + ACTIONS(1556), 1, anon_sym_COLON_EQ, + ACTIONS(2491), 1, + anon_sym_LBRACK, + STATE(1918), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(1554), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1549), 27, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, @@ -88602,11 +87905,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88622,18 +87923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73928] = 3, + [73399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2507), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, + ACTIONS(2505), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88665,17 +87965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73973] = 3, + [73444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(1694), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 31, + ACTIONS(1689), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88707,80 +88007,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74018] = 5, + [73489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1616), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(1611), 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, - ACTIONS(1652), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [73534] = 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), 31, + sym_string_start, + 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_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, + [73579] = 11, + ACTIONS(2306), 1, + anon_sym_DOT, + ACTIONS(2308), 1, + anon_sym_LPAREN, + ACTIONS(2316), 1, + anon_sym_STAR_STAR, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2310), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2322), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1307), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2320), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2397), 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_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, - [74067] = 6, - ACTIONS(292), 1, + [73640] = 5, + ACTIONS(276), 1, + anon_sym_COMMA, + ACTIONS(284), 1, anon_sym_COLON_EQ, - ACTIONS(2497), 1, - anon_sym_LBRACK, - STATE(1968), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(271), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(269), 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88796,36 +88184,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74118] = 6, - ACTIONS(1572), 1, + sym_type_conversion, + [73689] = 5, + ACTIONS(276), 1, + anon_sym_COMMA, + ACTIONS(284), 1, anon_sym_COLON_EQ, - ACTIONS(2497), 1, - anon_sym_LBRACK, - STATE(1970), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(271), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(269), 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88841,50 +88228,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74169] = 14, - ACTIONS(2385), 1, + sym_type_conversion, + [73738] = 15, + ACTIONS(2306), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2308), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2316), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2318), 1, anon_sym_LBRACK, - ACTIONS(2405), 1, + ACTIONS(2324), 1, + anon_sym_PIPE, + ACTIONS(2326), 1, anon_sym_AMP, - ACTIONS(2407), 1, + ACTIONS(2328), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2310), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2391), 2, + ACTIONS(2312), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2401), 2, + ACTIONS(2322), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1409), 2, + STATE(1307), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 3, + ACTIONS(2320), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, + ACTIONS(2411), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 16, + ACTIONS(2409), 15, 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, @@ -88894,17 +88283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74236] = 3, + [73807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2511), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 31, + ACTIONS(2509), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88936,69 +88325,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74281] = 13, - ACTIONS(2385), 1, + [73852] = 8, + ACTIONS(2306), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2308), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2316), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2318), 1, anon_sym_LBRACK, - ACTIONS(2407), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + STATE(1307), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2391), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2397), 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, - ACTIONS(2401), 2, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [73907] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(694), 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, - STATE(1409), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(651), 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, + [73956] = 10, + ACTIONS(2306), 1, + anon_sym_DOT, + ACTIONS(2308), 1, + anon_sym_LPAREN, + ACTIONS(2316), 1, + anon_sym_STAR_STAR, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2310), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1307), 2, sym_argument_list, sym_generator_expression, + ACTIONS(2320), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, ACTIONS(2399), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2397), 22, + anon_sym_RPAREN, + 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, + 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, + [74015] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(694), 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(2415), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(651), 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, + [74064] = 14, + ACTIONS(2306), 1, + anon_sym_DOT, + ACTIONS(2308), 1, + anon_sym_LPAREN, + ACTIONS(2316), 1, + anon_sym_STAR_STAR, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2326), 1, + anon_sym_AMP, + ACTIONS(2328), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2310), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2322), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1307), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2320), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2397), 16, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74346] = 3, + [74131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(2515), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 31, + ACTIONS(2513), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89030,17 +88604,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74391] = 3, + [74176] = 13, + ACTIONS(2306), 1, + anon_sym_DOT, + ACTIONS(2308), 1, + anon_sym_LPAREN, + ACTIONS(2316), 1, + anon_sym_STAR_STAR, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2328), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2310), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2322), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1307), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2320), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2397), 17, + 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, + 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, + [74241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 31, + ACTIONS(1670), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89072,17 +88698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74436] = 3, + [74286] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 31, + ACTIONS(1670), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89114,25 +88740,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74481] = 3, + [74331] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(271), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 31, - sym_string_start, + ACTIONS(269), 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, @@ -89155,34 +88783,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [74526] = 3, + [74378] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(271), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(269), 29, 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, @@ -89198,35 +88826,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74571] = 8, - ACTIONS(2321), 1, + [74425] = 4, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1554), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 29, anon_sym_DOT, - ACTIONS(2323), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2333), 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, + [74472] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(707), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(269), 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, @@ -89245,35 +88913,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74626] = 8, - ACTIONS(2321), 1, + [74521] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2519), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2517), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(2323), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2331), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2333), 1, 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, + [74566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2463), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 25, - anon_sym_RPAREN, + ACTIONS(2461), 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_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, @@ -89292,17 +88997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74681] = 3, + [74611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2523), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 31, + ACTIONS(2521), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89334,19 +89039,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74726] = 3, + [74656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2527), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 31, - sym_string_start, + ACTIONS(2525), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -89359,7 +89066,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, @@ -89375,35 +89081,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [74771] = 8, - ACTIONS(2321), 1, + [74701] = 8, + ACTIONS(2341), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2353), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2403), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, - anon_sym_RPAREN, + ACTIONS(2401), 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, @@ -89423,35 +89128,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74826] = 8, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + [74756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_as, + ACTIONS(2531), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, - anon_sym_RPAREN, + ACTIONS(2529), 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, @@ -89470,51 +89170,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74881] = 15, - ACTIONS(2321), 1, + [74801] = 14, + ACTIONS(2341), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2353), 1, anon_sym_LBRACK, - ACTIONS(2339), 1, - anon_sym_PIPE, - ACTIONS(2341), 1, + ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2343), 1, + ACTIONS(2363), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2327), 2, + ACTIONS(2347), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2337), 2, + ACTIONS(2357), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2355), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, + ACTIONS(2399), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 15, - anon_sym_RPAREN, + ACTIONS(2397), 16, 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, @@ -89524,28 +89223,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74950] = 8, - ACTIONS(2321), 1, + [74868] = 8, + ACTIONS(2306), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2308), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2316), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2318), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, + STATE(1307), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2403), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(2401), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -89571,46 +89270,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75005] = 10, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, + [74923] = 5, + ACTIONS(763), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + STATE(1126), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1554), 4, anon_sym_STAR, anon_sym_SLASH, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, - anon_sym_RPAREN, + ACTIONS(1549), 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, @@ -89620,189 +89314,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75064] = 14, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, - ACTIONS(2341), 1, - anon_sym_AMP, - ACTIONS(2343), 1, - anon_sym_CARET, + [74972] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2535), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2327), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2337), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 16, - anon_sym_RPAREN, + ACTIONS(2533), 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, - [75131] = 13, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_CARET, + [75017] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(271), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2327), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2337), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, - anon_sym_RPAREN, + ACTIONS(269), 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_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, - [75196] = 12, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, + sym_type_conversion, + [75064] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(271), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2327), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2337), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, - anon_sym_RPAREN, + ACTIONS(269), 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_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, - [75259] = 3, + sym_type_conversion, + [75111] = 4, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(1554), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1549), 29, 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, @@ -89818,17 +89484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75304] = 3, + sym_type_conversion, + [75158] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(271), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 31, + ACTIONS(269), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89860,32 +89527,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75349] = 5, - ACTIONS(755), 1, - sym_string_start, + [75203] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(707), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1116), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 4, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(269), 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, @@ -89904,33 +89571,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75398] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [75252] = 8, + ACTIONS(2341), 1, + anon_sym_DOT, + ACTIONS(2343), 1, + anon_sym_LPAREN, + ACTIONS(2351), 1, + anon_sym_STAR_STAR, + ACTIONS(2353), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1286), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 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(2405), 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_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, @@ -89946,34 +89618,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75445] = 4, - ACTIONS(292), 1, + [75307] = 5, + ACTIONS(1556), 1, anon_sym_COLON_EQ, + ACTIONS(2537), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1554), 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, + ACTIONS(1549), 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89989,27 +89662,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75492] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [75356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2467), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(2465), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90032,31 +89704,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75539] = 3, + [75401] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(271), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(269), 29, 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90075,30 +89747,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75584] = 3, + [75448] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(271), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(269), 29, 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90117,28 +89790,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75629] = 5, - ACTIONS(755), 1, - sym_string_start, + [75495] = 4, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1117), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 4, + ACTIONS(1554), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 29, + ACTIONS(1549), 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, @@ -90161,61 +89833,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75678] = 5, - ACTIONS(2539), 1, - sym_string_start, + [75542] = 13, + ACTIONS(2341), 1, + anon_sym_DOT, + ACTIONS(2343), 1, + anon_sym_LPAREN, + ACTIONS(2351), 1, + anon_sym_STAR_STAR, + ACTIONS(2353), 1, + anon_sym_LBRACK, + ACTIONS(2363), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1117), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 4, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2347), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2357), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1286), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2355), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 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_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, - [75727] = 3, + [75607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2541), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 31, + ACTIONS(2539), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90247,114 +89927,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75772] = 3, + [75652] = 12, + ACTIONS(2341), 1, + anon_sym_DOT, + ACTIONS(2343), 1, + anon_sym_LPAREN, + ACTIONS(2351), 1, + anon_sym_STAR_STAR, + ACTIONS(2353), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2345), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2546), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2347), 2, 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_LT_LT, + ACTIONS(2357), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(1286), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2355), 3, + anon_sym_AT, 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, - [75817] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_STAR, + ACTIONS(2399), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2397), 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, - [75862] = 3, + [75715] = 8, + ACTIONS(2306), 1, + anon_sym_DOT, + ACTIONS(2308), 1, + anon_sym_LPAREN, + ACTIONS(2316), 1, + anon_sym_STAR_STAR, + ACTIONS(2318), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + STATE(1307), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2405), 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, @@ -90373,23 +90025,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75907] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, + [75770] = 10, + ACTIONS(2369), 1, + anon_sym_DOT, + ACTIONS(2371), 1, + anon_sym_LPAREN, + ACTIONS(2379), 1, + anon_sym_STAR_STAR, + ACTIONS(2381), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2373), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1303), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2383), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 22, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -90397,17 +90059,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90417,23 +90074,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75956] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, + [75829] = 8, + ACTIONS(2369), 1, + anon_sym_DOT, + ACTIONS(2371), 1, + anon_sym_LPAREN, + ACTIONS(2379), 1, + anon_sym_STAR_STAR, + ACTIONS(2381), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + STATE(1303), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2403), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2401), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -90441,8 +90103,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90461,35 +90121,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76005] = 5, - ACTIONS(1572), 1, + [75884] = 7, + ACTIONS(1556), 1, anon_sym_COLON_EQ, - ACTIONS(2558), 1, - anon_sym_EQ, + ACTIONS(1642), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1630), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1632), 4, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1637), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, + ACTIONS(1634), 23, 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, @@ -90505,39 +90167,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76054] = 12, - ACTIONS(2385), 1, + [75937] = 14, + ACTIONS(2369), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2371), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2379), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2373), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2391), 2, + ACTIONS(2375), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2401), 2, + ACTIONS(2385), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1409), 2, + STATE(1303), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 3, + ACTIONS(2383), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2399), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(2397), 16, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -90548,41 +90214,42 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76117] = 3, + [76004] = 6, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(658), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(651), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(653), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(694), 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, @@ -90598,38 +90265,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76162] = 8, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + [76055] = 6, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(658), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(651), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(653), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, - anon_sym_RPAREN, + ACTIONS(694), 27, + 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90645,30 +90310,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76217] = 7, - ACTIONS(1572), 1, + [76106] = 6, + ACTIONS(1556), 1, anon_sym_COLON_EQ, - ACTIONS(1675), 1, + ACTIONS(1640), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, + ACTIONS(1630), 2, anon_sym_async, anon_sym_for, - ACTIONS(1673), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1657), 5, + ACTIONS(1637), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 23, + ACTIONS(1634), 27, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -90676,6 +90338,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90691,27 +90355,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76270] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [76157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2463), 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(2461), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + 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, @@ -90734,35 +90397,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76319] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [76202] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2545), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2543), 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, @@ -90778,71 +90439,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76368] = 5, + [76247] = 13, + ACTIONS(2369), 1, + anon_sym_DOT, + ACTIONS(2371), 1, + anon_sym_LPAREN, + ACTIONS(2379), 1, + anon_sym_STAR_STAR, + ACTIONS(2381), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2373), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, + ACTIONS(2375), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2385), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1303), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2383), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2397), 17, + anon_sym_RPAREN, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76312] = 12, + ACTIONS(2369), 1, anon_sym_DOT, + ACTIONS(2371), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2379), 1, anon_sym_STAR_STAR, + ACTIONS(2381), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2373), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2375), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2385), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1303), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2383), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(2399), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2397), 18, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, + 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, - [76417] = 3, + [76375] = 5, + ACTIONS(763), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, - anon_sym_as, + STATE(1127), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2300), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 31, - sym_string_start, + ACTIONS(2298), 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, @@ -90865,47 +90586,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76462] = 11, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + [76424] = 5, + ACTIONS(2547), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + STATE(1127), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2336), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2401), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 20, - anon_sym_RPAREN, + ACTIONS(2334), 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, @@ -90915,17 +90630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76523] = 3, + [76473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(1628), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 31, + ACTIONS(1626), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90957,17 +90672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76568] = 3, + [76518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(2552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 31, + ACTIONS(2550), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90999,33 +90714,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76613] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(2568), 1, - anon_sym_LBRACK, - STATE(1984), 1, - sym_type_parameter, + [76563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2556), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2554), 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, @@ -91044,33 +90756,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76664] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2568), 1, - anon_sym_LBRACK, - STATE(1988), 1, - sym_type_parameter, + [76608] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(1668), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(1666), 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, @@ -91089,85 +90798,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76715] = 8, - ACTIONS(2385), 1, + [76653] = 12, + ACTIONS(2306), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2308), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2316), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2318), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_as, + ACTIONS(2310), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2312), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2322), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1307), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2320), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2397), 18, 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_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, - [76770] = 8, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + [76716] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, - anon_sym_as, + ACTIONS(2535), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 25, - anon_sym_RPAREN, + ACTIONS(2533), 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91183,18 +90889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76825] = 5, + sym_type_conversion, + [76760] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(653), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, + ACTIONS(658), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(694), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -91209,15 +90916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(651), 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_not, anon_sym_and, anon_sym_or, @@ -91227,81 +90933,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76874] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(674), 1, - anon_sym_COLON, + [76808] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, - anon_sym_as, + ACTIONS(653), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(694), 14, 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_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(651), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + 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, - [76925] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(674), 1, - anon_sym_COLON, + [76856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, - anon_sym_as, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(2550), 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, @@ -91317,21 +91016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76976] = 3, + sym_type_conversion, + [76900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2527), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2525), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -91344,6 +91041,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, @@ -91359,217 +91057,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77021] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [76944] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(653), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(694), 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_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(651), 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, - [77068] = 3, + [76992] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(653), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(694), 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(651), 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, - [77113] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [77040] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(1637), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(1640), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1634), 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_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(1630), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + 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, - [77160] = 3, + [77088] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1637), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1640), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1634), 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(1630), 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, - [77205] = 11, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, + [77136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2515), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2337), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 20, - anon_sym_RPAREN, + ACTIONS(2513), 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, @@ -91579,34 +91270,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77266] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [77180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2471), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2469), 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91622,32 +91311,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77314] = 3, + sym_type_conversion, + [77224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, - anon_sym_as, + ACTIONS(2556), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, + ACTIONS(2554), 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, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91663,17 +91352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77358] = 3, + sym_type_conversion, + [77268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(1616), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 30, + ACTIONS(1611), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91685,10 +91375,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, @@ -91704,19 +91394,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77402] = 3, + [77312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1679), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(1677), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -91729,7 +91420,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, @@ -91745,32 +91435,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77446] = 4, - ACTIONS(1664), 1, - anon_sym_COMMA, + [77356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(1679), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1677), 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, @@ -91786,33 +91476,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77492] = 4, - ACTIONS(1567), 1, - anon_sym_COMMA, + [77400] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1554), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1549), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + 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, @@ -91828,33 +91517,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77538] = 4, - ACTIONS(1679), 1, - anon_sym_COMMA, + [77444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2467), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(2465), 30, + sym_string_start, 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, @@ -91870,117 +91558,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77584] = 5, + [77488] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 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(667), 16, + ACTIONS(276), 2, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(271), 5, 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, - sym_type_conversion, - [77632] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(269), 27, 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(667), 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, - sym_type_conversion, - [77680] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1652), 3, - anon_sym_COLON, anon_sym_async, anon_sym_for, - ACTIONS(1657), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91999,27 +91601,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77726] = 4, - ACTIONS(292), 1, + [77536] = 4, + ACTIONS(284), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(271), 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(269), 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, @@ -92041,27 +91643,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77772] = 4, - ACTIONS(292), 1, + [77582] = 4, + ACTIONS(284), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(271), 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(269), 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, @@ -92083,27 +91685,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77818] = 4, - ACTIONS(1572), 1, + [77628] = 4, + ACTIONS(1556), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(1554), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1549), 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, @@ -92125,32 +91727,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77864] = 4, - ACTIONS(1632), 1, - anon_sym_COMMA, + [77674] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(276), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(269), 27, anon_sym_DOT, anon_sym_LPAREN, - 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, @@ -92166,26 +91770,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77910] = 3, + [77722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1687), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1685), 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, @@ -92208,17 +91810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77954] = 3, + sym_type_conversion, + [77766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(269), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92230,10 +91833,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, @@ -92249,17 +91852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77998] = 3, + [77810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(269), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92271,10 +91874,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, @@ -92290,17 +91893,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78042] = 3, + [77854] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2483), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(2481), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92312,10 +91915,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, @@ -92331,23 +91934,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78086] = 3, + [77898] = 5, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(1551), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1554), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 30, + ACTIONS(1549), 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, @@ -92356,7 +91962,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, @@ -92372,34 +91977,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78130] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [77946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, - anon_sym_as, + ACTIONS(2475), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(2473), 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, @@ -92415,28 +92017,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78178] = 5, - ACTIONS(292), 1, + sym_type_conversion, + [77990] = 4, + ACTIONS(284), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, - anon_sym_as, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(269), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92458,28 +92060,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78226] = 5, - ACTIONS(1572), 1, + [78036] = 4, + ACTIONS(284), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, - anon_sym_as, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(269), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92501,32 +92102,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78274] = 3, + [78082] = 4, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_as, + ACTIONS(1554), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(1549), 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, @@ -92542,19 +92144,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78318] = 3, + [78128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(1628), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(1626), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -92567,7 +92170,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, @@ -92583,25 +92185,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78362] = 3, + [78172] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, - anon_sym_as, + ACTIONS(2479), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + 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_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92624,17 +92225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78406] = 3, + sym_type_conversion, + [78216] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2511), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2509), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92646,10 +92248,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, @@ -92665,17 +92267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78450] = 3, + [78260] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2523), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2521), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92687,10 +92289,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, @@ -92706,17 +92308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78494] = 3, + [78304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2529), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92728,10 +92330,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, @@ -92747,17 +92349,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78538] = 3, + [78348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(2541), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 30, + ACTIONS(2539), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92788,32 +92390,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78582] = 3, + [78392] = 6, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, + ACTIONS(1563), 1, + anon_sym_LBRACK, + STATE(2097), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(1554), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(1549), 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_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, @@ -92829,20 +92434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78626] = 3, + [78442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(2545), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 30, + ACTIONS(2543), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -92852,6 +92456,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, @@ -92870,17 +92475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78670] = 3, + [78486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2489), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(2487), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92892,10 +92497,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, @@ -92911,23 +92516,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78714] = 3, + [78530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(2463), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(2461), 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, @@ -92936,7 +92542,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, @@ -92952,17 +92557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78758] = 3, + [78574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2507), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(2505), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92974,10 +92579,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, @@ -92993,25 +92598,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78802] = 3, + [78618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, - anon_sym_as, + ACTIONS(1628), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(1626), 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, @@ -93034,73 +92638,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78846] = 3, + sym_type_conversion, + [78662] = 5, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2523), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, + ACTIONS(1630), 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, - [78890] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1637), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(1634), 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, @@ -93116,17 +92682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78934] = 3, + [78710] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(2527), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 30, + ACTIONS(2525), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93138,10 +92704,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, @@ -93157,17 +92723,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78978] = 3, + [78754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(2519), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 30, + ACTIONS(2517), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93198,17 +92764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79022] = 3, + [78798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(2535), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(2533), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93220,10 +92786,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, @@ -93239,17 +92805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79066] = 3, + [78842] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 30, + ACTIONS(2550), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93261,10 +92827,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, @@ -93280,17 +92846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79110] = 3, + [78886] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2556), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(2554), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93302,10 +92868,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, @@ -93321,17 +92887,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79154] = 3, + [78930] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(2475), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 30, + ACTIONS(2473), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93362,17 +92928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79198] = 3, + [78974] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2479), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(2477), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93403,17 +92969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79242] = 3, + [79018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2495), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(2493), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93444,17 +93010,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79286] = 3, + [79062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(2499), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, + ACTIONS(2497), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93466,10 +93032,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, @@ -93485,17 +93051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79330] = 3, + [79106] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(2503), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 30, + ACTIONS(2501), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93507,10 +93073,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, @@ -93526,17 +93092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79374] = 3, + [79150] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2515), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(2513), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93567,17 +93133,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79418] = 3, + [79194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2471), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(2469), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93608,17 +93174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79462] = 3, + [79238] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(1666), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93649,26 +93215,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79506] = 4, + [79282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, + ACTIONS(1554), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(1549), 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, @@ -93691,32 +93256,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79552] = 3, + [79326] = 4, + ACTIONS(1661), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, - anon_sym_as, + ACTIONS(1664), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(1659), 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, @@ -93732,22 +93297,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79596] = 5, - ACTIONS(1572), 1, + sym_type_conversion, + [79372] = 5, + ACTIONS(1556), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, + ACTIONS(1551), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1570), 5, + ACTIONS(1554), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(1549), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -93775,20 +93341,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79644] = 3, + [79420] = 4, + ACTIONS(1551), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1549), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -93816,17 +93383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79688] = 3, + [79466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93857,17 +93424,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79732] = 3, + [79510] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93898,20 +93465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79776] = 3, + [79554] = 4, + ACTIONS(1691), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(1694), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(1689), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -93939,81 +93507,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79820] = 3, + [79600] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(653), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(694), 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_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, - [79864] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2517), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2515), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(651), 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_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, @@ -94021,66 +93550,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79908] = 3, + [79648] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, - anon_sym_as, + ACTIONS(653), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(694), 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_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(651), 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, - [79952] = 3, + sym_type_conversion, + [79696] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(1630), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1637), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 30, + ACTIONS(1634), 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, @@ -94103,17 +93635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79996] = 3, + [79742] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2467), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2465), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94121,13 +93654,13 @@ 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94143,32 +93676,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80040] = 3, + [79786] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(269), 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94184,32 +93718,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80084] = 3, + [79832] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(269), 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94225,32 +93760,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80128] = 3, + [79878] = 4, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(1554), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(1549), 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94266,19 +93802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80172] = 3, + [79924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(1679), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(1677), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94286,13 +93820,13 @@ 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94308,32 +93842,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80216] = 3, + sym_type_conversion, + [79968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, - anon_sym_as, + ACTIONS(1679), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 30, + ACTIONS(1677), 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, @@ -94349,20 +93883,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80260] = 3, + sym_type_conversion, + [80012] = 4, + ACTIONS(1613), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1616), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(1611), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -94390,24 +93926,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80304] = 3, + [80058] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(269), 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, @@ -94430,25 +93967,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80348] = 3, + [80102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(269), 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, @@ -94471,20 +94008,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80392] = 3, + [80146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2467), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(2465), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -94496,7 +94034,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, @@ -94512,25 +94049,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80436] = 3, + [80190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2483), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, + ACTIONS(2481), 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, @@ -94553,41 +94090,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80480] = 3, + [80234] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1637), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1640), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(1634), 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_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(1630), 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, @@ -94595,17 +94133,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80524] = 3, + [80282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(1664), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 30, + ACTIONS(1659), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94636,24 +94174,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80568] = 3, + [80326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(1664), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(1659), 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, @@ -94676,25 +94215,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80612] = 3, + [80370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(1694), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 30, + ACTIONS(1689), 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, @@ -94717,32 +94256,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80656] = 3, + [80414] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(651), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(653), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(694), 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_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, @@ -94758,30 +94299,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80700] = 3, + [80462] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(651), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(653), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(694), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94800,72 +94342,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80744] = 3, + [80510] = 12, + ACTIONS(2416), 1, + anon_sym_DOT, + ACTIONS(2418), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_STAR_STAR, + ACTIONS(2428), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2399), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2420), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2422), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2432), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1430), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2430), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2397), 18, 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_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, - sym_type_conversion, - [80788] = 3, + [80572] = 5, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(1630), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1637), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 30, + ACTIONS(1634), 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_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, @@ -94881,33 +94435,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80832] = 3, + [80620] = 6, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, + ACTIONS(2459), 1, + anon_sym_LBRACK, + STATE(2017), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, - anon_sym_as, + ACTIONS(1554), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(1549), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94923,20 +94479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80876] = 3, + [80670] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2511), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(2509), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -94949,6 +94504,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, @@ -94964,29 +94520,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80920] = 3, + [80714] = 8, + ACTIONS(2416), 1, + anon_sym_DOT, + ACTIONS(2418), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_STAR_STAR, + ACTIONS(2428), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_as, + STATE(1430), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2403), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2401), 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, @@ -95005,25 +94566,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80964] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [80768] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2523), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2521), 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, @@ -95032,6 +94591,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, @@ -95047,17 +94607,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81010] = 3, + [80812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(2529), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95069,10 +94629,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, @@ -95088,30 +94648,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81054] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [80856] = 8, + ACTIONS(2416), 1, + anon_sym_DOT, + ACTIONS(2418), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_STAR_STAR, + ACTIONS(2428), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + STATE(1430), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2405), 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_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95130,25 +94694,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81100] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [80910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2541), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(2539), 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, @@ -95157,6 +94719,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, @@ -95172,17 +94735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81146] = 3, + [80954] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2545), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2543), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95194,10 +94757,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, @@ -95213,17 +94776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81190] = 3, + [80998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2489), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2487), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95235,10 +94798,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, @@ -95254,31 +94817,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81234] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, - anon_sym_LBRACK, - STATE(2076), 1, - sym_type_parameter, + [81042] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1687), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1685), 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, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -95298,24 +94858,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81284] = 3, + [81086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(2507), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 30, + ACTIONS(2505), 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, @@ -95338,18 +94899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81328] = 3, + [81130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(2495), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 30, + ACTIONS(2493), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95380,17 +94940,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81372] = 3, + [81174] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2499), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(2497), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95421,24 +94981,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81416] = 3, + [81218] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2527), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(2525), 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, @@ -95461,25 +95022,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81460] = 3, + [81262] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2519), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(2517), 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, @@ -95502,25 +95063,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81504] = 3, + [81306] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2535), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(2533), 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, @@ -95543,18 +95104,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81548] = 3, + [81350] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(2550), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95566,10 +95126,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, @@ -95585,76 +95145,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81592] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, - anon_sym_LBRACK, - STATE(2090), 1, - sym_type_parameter, + [81394] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2556), 5, anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - 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, - [81642] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2473), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(2554), 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, @@ -95670,67 +95186,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81686] = 5, + [81438] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 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(1652), 16, - anon_sym_COMMA, + ACTIONS(2475), 5, 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, - sym_type_conversion, - [81734] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1667), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95753,18 +95227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81778] = 3, + [81482] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2479), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2477), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95776,10 +95249,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, @@ -95795,33 +95268,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81822] = 8, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81526] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 4, + ACTIONS(1628), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(1626), 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, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -95841,37 +95309,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81876] = 8, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 4, + ACTIONS(2495), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 25, + 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_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, @@ -95887,32 +95350,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81930] = 3, + [81614] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2499), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, - sym_string_start, + ACTIONS(2497), 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, @@ -95928,24 +95391,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81974] = 3, + [81658] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2503), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(2501), 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, @@ -95968,32 +95432,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82018] = 3, + [81702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(1668), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 30, + ACTIONS(1666), 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, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96009,34 +95473,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82062] = 8, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81746] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 4, + ACTIONS(1672), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 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_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -96056,46 +95514,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82116] = 11, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81790] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, + ACTIONS(1672), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 20, + anon_sym_LT, + anon_sym_GT, + 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_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, @@ -96105,87 +95555,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82176] = 15, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2458), 1, - anon_sym_AMP, - ACTIONS(2460), 1, - anon_sym_CARET, + [81834] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2436), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2434), 15, + ACTIONS(276), 2, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(271), 5, 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, - [82244] = 8, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(269), 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, @@ -96204,45 +95598,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82298] = 10, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81882] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, + ACTIONS(2515), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2513), 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_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, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96252,440 +95639,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82356] = 14, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(2458), 1, - anon_sym_AMP, - ACTIONS(2460), 1, - anon_sym_CARET, + [81926] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, + ACTIONS(2471), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 16, + anon_sym_LT, + anon_sym_GT, + 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_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, - [82422] = 13, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(2460), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 17, - 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_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, - [82486] = 12, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, + ACTIONS(1679), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1677), 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, 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, - [82548] = 5, + [82014] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1679), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1677), 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_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(667), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - 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, - [82596] = 5, + [82058] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1554), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1549), 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(667), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - 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, - [82644] = 5, + sym_type_conversion, + [82102] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(276), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(269), 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, 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(667), 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, - [82692] = 5, + [82150] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1630), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1637), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1634), 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, - ACTIONS(667), 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, - [82740] = 5, + [82196] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1664), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(1659), 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_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(1652), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - 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, - [82788] = 5, + [82240] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2503), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(2501), 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(1652), 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, - [82836] = 3, + sym_type_conversion, + [82284] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, - anon_sym_as, + ACTIONS(2463), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(2461), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96704,19 +96011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82880] = 3, + [82328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(1668), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(1666), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96726,7 +96034,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, @@ -96745,32 +96052,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82924] = 3, + [82372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + ACTIONS(271), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(269), 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, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96786,32 +96092,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82968] = 3, + sym_type_conversion, + [82416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(271), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(269), 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, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96827,29 +96133,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83012] = 3, + sym_type_conversion, + [82460] = 6, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(1563), 1, + anon_sym_LBRACK, + STATE(2096), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(269), 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_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, @@ -96868,32 +96178,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83056] = 3, + [82510] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(2483), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(2481), 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, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96909,17 +96218,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83100] = 3, + sym_type_conversion, + [82554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(1672), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96950,34 +96260,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83144] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [82598] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(1694), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(1689), 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96993,34 +96300,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83192] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [82642] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1616), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1611), 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97036,26 +96341,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83240] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [82686] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, + ACTIONS(1672), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1670), 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, @@ -97079,32 +96383,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83288] = 3, + [82730] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, - anon_sym_as, + ACTIONS(2519), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(2517), 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_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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97120,28 +96423,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83332] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [82774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2463), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2461), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97163,29 +96465,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83380] = 3, + [82818] = 8, + ACTIONS(2416), 1, + anon_sym_DOT, + ACTIONS(2418), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_STAR_STAR, + ACTIONS(2428), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, - anon_sym_as, + STATE(1430), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2397), 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, @@ -97204,33 +96511,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83424] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2511), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2509), 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_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, @@ -97246,27 +96551,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83470] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [82916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1687), 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(1685), 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_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97288,33 +96593,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83516] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [82960] = 11, + ACTIONS(2416), 1, + anon_sym_DOT, + ACTIONS(2418), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_STAR_STAR, + ACTIONS(2428), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2399), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2420), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2432), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1430), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2430), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2397), 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, + [83020] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2523), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(2521), 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_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, @@ -97330,18 +96682,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83562] = 3, + sym_type_conversion, + [83064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, - sym_string_start, + ACTIONS(2529), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97349,13 +96701,13 @@ 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97371,17 +96723,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83606] = 3, + sym_type_conversion, + [83108] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1694), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(1689), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97412,17 +96765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83650] = 3, + [83152] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1616), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(1611), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97453,32 +96806,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83694] = 3, + [83196] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, - anon_sym_as, + ACTIONS(2541), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, - sym_string_start, + ACTIONS(2539), 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_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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97494,28 +96846,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83738] = 3, + sym_type_conversion, + [83240] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2545), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2543), 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, + [83284] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2489), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(2487), 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, + 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, + [83328] = 15, + ACTIONS(2416), 1, + anon_sym_DOT, + ACTIONS(2418), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_STAR_STAR, + ACTIONS(2428), 1, + anon_sym_LBRACK, + ACTIONS(2434), 1, + anon_sym_PIPE, + ACTIONS(2436), 1, + anon_sym_AMP, + ACTIONS(2438), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2411), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2420), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2422), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2432), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1430), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2430), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2409), 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, + [83396] = 8, + ACTIONS(2416), 1, + anon_sym_DOT, + ACTIONS(2418), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_STAR_STAR, + ACTIONS(2428), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1430), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2397), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -97535,32 +97028,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83782] = 3, + [83450] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, - anon_sym_as, + ACTIONS(2507), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(2505), 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, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97576,40 +97068,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83826] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [83494] = 10, + ACTIONS(2416), 1, + anon_sym_DOT, + ACTIONS(2418), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_STAR_STAR, + ACTIONS(2428), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2399), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2420), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1430), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2430), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2397), 22, 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, @@ -97619,151 +97117,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83874] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2566), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2564), 30, + [83552] = 14, + ACTIONS(2416), 1, anon_sym_DOT, + ACTIONS(2418), 1, 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, + ACTIONS(2426), 1, anon_sym_STAR_STAR, + ACTIONS(2428), 1, 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, + ACTIONS(2436), 1, anon_sym_AMP, + ACTIONS(2438), 1, 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, - [83918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2399), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2420), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2422), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2432), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1430), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2430), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2397), 16, + 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_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, - [83962] = 3, + [83618] = 13, + ACTIONS(2416), 1, + anon_sym_DOT, + ACTIONS(2418), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_STAR_STAR, + ACTIONS(2428), 1, + anon_sym_LBRACK, + ACTIONS(2438), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2399), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2420), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2422), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2432), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1430), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2430), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2397), 17, + 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_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, - [84006] = 3, + [83682] = 6, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(2459), 1, + anon_sym_LBRACK, + STATE(2016), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, - anon_sym_as, + ACTIONS(271), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 30, + ACTIONS(269), 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_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -97783,32 +97264,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84050] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1579), 1, - anon_sym_LBRACK, - STATE(2062), 1, - sym_type_parameter, + [83732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2511), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 26, + ACTIONS(2509), 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, @@ -97827,32 +97304,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84100] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(1579), 1, - anon_sym_LBRACK, - STATE(2077), 1, - sym_type_parameter, + [83775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2471), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 26, + 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_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97871,29 +97344,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84150] = 3, + [83818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(2519), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(2517), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97912,24 +97384,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84194] = 3, + [83861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(2535), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 30, + ACTIONS(2533), 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, @@ -97953,31 +97424,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84238] = 3, + [83904] = 4, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(1554), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 30, + ACTIONS(1549), 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, @@ -97993,18 +97465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [84282] = 3, + [83949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98034,22 +97505,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84325] = 4, + [83992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1682), 5, + ACTIONS(2556), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 27, + ACTIONS(2554), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -98075,18 +97545,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84370] = 5, + [84035] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, + ACTIONS(1640), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1634), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -98101,12 +97571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, + ACTIONS(1630), 15, 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_not, anon_sym_and, @@ -98117,71 +97587,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84417] = 5, + [84082] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1672), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1670), 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(667), 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, - [84464] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [84125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2475), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2473), 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, @@ -98200,70 +97667,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84509] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [84168] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1637), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(1640), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1634), 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_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(1630), 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, - [84554] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [84215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2479), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + 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_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, @@ -98282,20 +97749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84599] = 3, + [84258] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2463), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2461), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -98304,6 +97770,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, @@ -98322,17 +97789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84642] = 3, + [84301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(271), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98362,17 +97829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84685] = 3, + [84344] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1664), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1659), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98402,17 +97869,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84728] = 3, + [84387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(271), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98442,17 +97909,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84771] = 3, + [84430] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2515), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(2513), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98482,25 +97949,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84814] = 3, + [84473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(2511), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(2509), 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, @@ -98522,25 +97989,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84857] = 3, + [84516] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2471), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98562,57 +98029,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84900] = 3, + [84559] = 7, + ACTIONS(1642), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(1637), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1640), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1632), 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(1630), 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(1634), 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, + [84610] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(694), 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(651), 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, - [84943] = 3, + [84657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2511), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2509), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98642,17 +98155,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84986] = 3, + [84700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(1554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(1549), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98682,25 +98195,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85029] = 3, + [84743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(271), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(269), 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, @@ -98722,17 +98235,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85072] = 3, + [84786] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1694), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1689), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98762,17 +98275,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85115] = 3, + [84829] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(707), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(271), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(269), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98780,7 +98296,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, @@ -98802,59 +98317,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85158] = 5, + [84876] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(271), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(269), 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(667), 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, - [85205] = 3, + [84919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(1616), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(1611), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98884,38 +98397,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85248] = 5, + [84962] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1661), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1664), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1659), 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, 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(667), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85007] = 7, + ACTIONS(1642), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1637), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1640), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1632), 5, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1630), 12, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_not, anon_sym_and, @@ -98926,25 +98469,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85295] = 3, + ACTIONS(1634), 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, + [85058] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(1694), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1689), 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, @@ -98966,22 +98522,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85338] = 4, + [85101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1635), 5, + ACTIONS(1616), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 27, + ACTIONS(1611), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -99007,25 +98562,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85383] = 3, + [85144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2483), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(2481), 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, @@ -99047,25 +98602,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85426] = 3, + [85187] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(694), 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(651), 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, + [85234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(1670), 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, @@ -99087,17 +98684,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85469] = 3, + [85277] = 5, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, + ACTIONS(2537), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1554), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(1549), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99105,7 +98705,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, @@ -99127,17 +98726,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85512] = 3, + [85324] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1659), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1664), 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(1565), 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, + [85369] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2523), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(2521), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99167,25 +98807,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85555] = 3, + [85412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2483), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(2481), 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, @@ -99207,17 +98847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85598] = 3, + [85455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2529), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99247,25 +98887,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85641] = 3, + [85498] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(1694), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(1689), 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, @@ -99287,25 +98927,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85684] = 3, + [85541] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1551), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1554), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(1549), 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, @@ -99327,25 +98968,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85727] = 3, + [85586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(1616), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 29, + ACTIONS(1611), 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, @@ -99367,28 +99008,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85770] = 3, + [85629] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(271), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(269), 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, @@ -99407,17 +99049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85813] = 3, + [85674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(2527), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2525), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99447,25 +99089,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85856] = 3, + [85717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2527), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(2525), 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, @@ -99487,25 +99129,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85899] = 3, + [85760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2541), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2539), 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, @@ -99527,99 +99169,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85942] = 4, + [85803] = 3, 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(320), 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, - [85987] = 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(320), 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, - [86032] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2545), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(2543), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99649,25 +99209,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86075] = 3, + [85846] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(2519), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(2517), 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, @@ -99689,25 +99249,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86118] = 3, + [85889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(2535), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 29, + ACTIONS(2533), 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, @@ -99729,57 +99289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86161] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2529), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2527), 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86204] = 3, + [85932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99809,17 +99329,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86247] = 3, + [85975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2556), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2554), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99849,65 +99369,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86290] = 3, + [86018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2560), 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86333] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2519), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2517), 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, @@ -99929,17 +99409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86376] = 3, + [86061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99969,17 +99449,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86419] = 3, + [86104] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1687), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1685), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100009,65 +99489,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86462] = 3, + [86147] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(1549), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1554), 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, - [86505] = 3, + ACTIONS(1565), 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, + [86192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2535), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2533), 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, @@ -100089,25 +99570,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86548] = 3, + [86235] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(2552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100129,17 +99610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86591] = 3, + [86278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2515), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2513), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100169,17 +99650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86634] = 3, + [86321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(2556), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 29, + ACTIONS(2554), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100209,68 +99690,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86677] = 3, + [86364] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_as, + ACTIONS(271), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(269), 28, 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, - [86720] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2513), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2511), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100289,25 +99731,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86763] = 3, + [86409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, - anon_sym_as, + ACTIONS(2475), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2473), 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, @@ -100329,20 +99771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86806] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2558), 1, - anon_sym_EQ, + [86452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 4, + ACTIONS(2479), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(2477), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100350,6 +99789,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, @@ -100371,25 +99811,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86853] = 3, + [86495] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(1554), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 29, + ACTIONS(1549), 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, @@ -100411,25 +99851,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86896] = 3, + [86538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(2531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(2529), 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, @@ -100451,25 +99891,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86939] = 3, + [86581] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(1661), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1664), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(1659), 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, @@ -100491,25 +99932,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86982] = 3, + [86626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2527), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2525), 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, @@ -100531,17 +99972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87025] = 3, + [86669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2499), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(2497), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100571,17 +100012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87068] = 3, + [86712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2503), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(2501), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100611,28 +100052,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87111] = 3, + [86755] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 4, + ACTIONS(1551), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1554), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(1549), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100651,61 +100093,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87154] = 5, + [86800] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2541), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(2539), 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(1652), 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, - [87201] = 3, + [86843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(2545), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, - sym_string_start, + ACTIONS(2543), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -100714,7 +100155,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, @@ -100733,148 +100173,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87244] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1662), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1667), 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(1581), 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, - [87289] = 4, + [86886] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1570), 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(1581), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(1691), 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, - [87334] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1677), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1682), 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(1686), 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, - [87379] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2509), 5, + anon_sym_RBRACK, + ACTIONS(1694), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(1689), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100896,108 +100214,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87422] = 5, + [86931] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1613), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1616), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(1611), 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, 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(1652), 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, - [87469] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1630), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1635), 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(1637), 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, - [87514] = 3, + [86976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2541), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(2539), 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, @@ -101019,25 +100295,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87557] = 3, + [87019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2495), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 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_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101059,17 +100335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87600] = 3, + [87062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(2523), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2521), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101099,25 +100375,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87643] = 3, + [87105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2475), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(2473), 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, @@ -101139,67 +100415,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87686] = 3, + [87148] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(653), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(694), 14, 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(651), 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, - [87729] = 7, - ACTIONS(1675), 1, - anon_sym_EQ, + [87195] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(653), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(658), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1673), 5, + ACTIONS(694), 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(651), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1652), 12, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_not, anon_sym_and, @@ -101210,30 +100499,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1654), 12, + [87242] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1689), 3, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1694), 13, + anon_sym_STAR, 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_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [87780] = 3, + ACTIONS(1696), 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, + [87287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2499), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(2497), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101263,25 +100580,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87823] = 3, + [87330] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(1691), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1694), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(1689), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101303,17 +100621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87866] = 3, + [87375] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(1628), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 29, + ACTIONS(1626), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101343,17 +100661,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87909] = 3, + [87418] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(2531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 29, + ACTIONS(2529), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101383,25 +100701,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87952] = 3, + [87461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(2503), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 29, + ACTIONS(2501), 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, @@ -101423,65 +100741,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87995] = 3, + [87504] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, - anon_sym_as, + ACTIONS(269), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(271), 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_LT, - anon_sym_GT, - ACTIONS(2489), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(312), 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, + [87549] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(271), 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, - [88038] = 3, + ACTIONS(312), 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, + [87594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(2487), 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, @@ -101503,25 +100863,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88081] = 3, + [87637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(1679), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1677), 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, @@ -101543,25 +100903,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88124] = 3, + [87680] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, - anon_sym_as, + ACTIONS(1664), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1659), 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, @@ -101583,26 +100943,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88167] = 4, + [87723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1667), 5, - anon_sym_as, + ACTIONS(1668), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 27, + ACTIONS(1666), 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, @@ -101624,17 +100983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88212] = 3, + [87766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101664,26 +101023,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88255] = 4, + [87809] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(1672), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(1670), 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, @@ -101705,25 +101063,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88300] = 3, + [87852] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1679), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1677), 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, @@ -101745,66 +101103,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88343] = 3, + [87895] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(1637), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1640), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(1634), 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(1630), 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, - [88386] = 4, + [87942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1682), 5, - anon_sym_as, + ACTIONS(1679), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 27, + ACTIONS(1677), 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, @@ -101826,25 +101185,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88431] = 3, + [87985] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2545), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2543), 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, @@ -101866,110 +101225,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88474] = 5, + [88028] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2489), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2487), 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(667), 15, - 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, + [88071] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(269), 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_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_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, - [88521] = 5, + [88114] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2483), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + 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, + 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(667), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [88157] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1679), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1677), 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, - [88568] = 4, + [88200] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, - anon_sym_as, + ACTIONS(2479), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101991,25 +101425,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88613] = 3, + [88243] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1611), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1616), 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(1620), 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, + [88288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1687), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1685), 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, @@ -102031,59 +101506,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88656] = 5, + [88331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2471), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(2469), 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(1652), 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, - [88703] = 3, + [88374] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(1549), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102113,26 +101586,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88746] = 4, + [88417] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 2, - anon_sym_RPAREN, + ACTIONS(653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(694), 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(651), 15, anon_sym_COMMA, - ACTIONS(1635), 5, 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, + [88464] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(707), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 27, + ACTIONS(269), 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, @@ -102154,25 +101670,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88791] = 3, + [88511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2495), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 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, @@ -102194,21 +101710,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88834] = 3, + [88554] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1613), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1616), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1611), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102234,25 +101751,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88877] = 3, + [88599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, - anon_sym_as, + ACTIONS(2499), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2497), 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, @@ -102274,25 +101791,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88920] = 3, + [88642] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, - anon_sym_as, + ACTIONS(2503), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(2501), 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, @@ -102314,17 +101831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88963] = 3, + [88685] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102354,25 +101871,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89006] = 3, + [88728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2515), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2513), 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, @@ -102394,57 +101911,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89049] = 3, + [88771] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(653), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(658), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(694), 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(651), 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, - [89092] = 3, + [88818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2507), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(2505), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102474,25 +101993,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89135] = 3, + [88861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, - anon_sym_as, + ACTIONS(2507), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2505), 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, @@ -102514,25 +102033,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89178] = 3, + [88904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, - anon_sym_as, + ACTIONS(2523), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(2521), 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, @@ -102554,17 +102073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89221] = 3, + [88947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2467), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2465), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102572,10 +102091,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, @@ -102594,26 +102113,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89264] = 4, + [88990] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1667), 5, + ACTIONS(1630), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1637), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 27, + ACTIONS(1634), 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, @@ -102635,25 +102154,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89309] = 3, + [89035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(1664), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 29, + ACTIONS(1659), 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, @@ -102675,17 +102194,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89352] = 3, + [89078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1628), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1626), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102715,69 +102234,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89395] = 7, - ACTIONS(1675), 1, - anon_sym_EQ, + [89121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1673), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1652), 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(1654), 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, - [89446] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + ACTIONS(2507), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2505), 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, @@ -102799,25 +102274,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89489] = 3, + [89164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(1668), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 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, @@ -102839,25 +102314,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89532] = 3, + [89207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2495), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102879,29 +102354,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89575] = 4, + [89250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(1628), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(1626), 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, @@ -102920,25 +102393,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89620] = 3, + [89292] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(653), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(694), 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, @@ -102960,20 +102433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89663] = 5, - ACTIONS(292), 1, + [89336] = 4, + ACTIONS(1556), 1, anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(1637), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1634), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103002,30 +102473,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89710] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, + [89380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(1679), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1677), 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, @@ -103044,28 +102512,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89757] = 3, + [89422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, - anon_sym_as, + ACTIONS(2499), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(2497), 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, @@ -103084,16 +102551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89800] = 3, + [89464] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 4, + ACTIONS(2503), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2501), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103123,16 +102590,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89842] = 3, + [89506] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 4, + ACTIONS(2475), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(2473), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103162,16 +102629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89884] = 3, + [89548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 4, + ACTIONS(2479), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(2477), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103201,16 +102668,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89926] = 3, + [89590] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2556), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2554), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103240,16 +102707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89968] = 3, + [89632] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2515), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2513), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103279,58 +102746,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90010] = 6, + [89674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2471), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1673), 5, + ACTIONS(2469), 29, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1652), 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(1654), 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, - [90058] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [89716] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 4, + ACTIONS(1664), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1659), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103360,57 +102824,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90100] = 5, + [89758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1694), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(1689), 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(1652), 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, - [90146] = 3, + [89800] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 4, + ACTIONS(1554), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(1549), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103440,63 +102902,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90188] = 3, + [89842] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 4, + ACTIONS(1637), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1640), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(1632), 5, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1630), 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(1634), 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90230] = 7, - ACTIONS(1675), 1, + [89890] = 7, + ACTIONS(1642), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1640), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1673), 4, + ACTIONS(1632), 4, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(1652), 12, + ACTIONS(1630), 12, anon_sym_as, anon_sym_if, anon_sym_in, @@ -103509,7 +102974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1654), 12, + ACTIONS(1634), 12, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -103522,28 +102987,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [90280] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(1616), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(1611), 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, @@ -103562,16 +103026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90324] = 3, + [89982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 4, + ACTIONS(1687), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(1685), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103601,28 +103065,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90366] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(2511), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(2509), 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, @@ -103641,24 +103104,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90410] = 3, + [90066] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 4, + ACTIONS(653), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(694), 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(651), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, 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, + [90112] = 4, + ACTIONS(1556), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1637), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1634), 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, @@ -103680,16 +103185,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90452] = 3, + [90156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 4, + ACTIONS(2495), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2493), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103719,16 +103224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90494] = 3, + [90198] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 4, + ACTIONS(1668), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103758,16 +103263,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90536] = 3, + [90240] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 4, + ACTIONS(1637), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1640), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1634), 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(1630), 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, + [90286] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2523), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2521), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103797,16 +103343,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90578] = 3, + [90328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 4, + ACTIONS(2531), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2529), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103836,16 +103382,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90620] = 3, + [90370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, + ACTIONS(1672), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103875,31 +103421,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90662] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(2541), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(2539), 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, @@ -103915,31 +103460,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90706] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(2545), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(2543), 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, @@ -103955,31 +103499,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90750] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [90496] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(2489), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(2487), 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, @@ -103995,16 +103538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90794] = 3, + [90538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 4, + ACTIONS(2507), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(2505), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104034,28 +103577,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90836] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [90580] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(271), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(269), 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, @@ -104074,16 +103616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90880] = 3, + [90622] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 4, + ACTIONS(271), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104113,30 +103655,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90922] = 3, + [90664] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 4, + ACTIONS(653), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(694), 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, @@ -104152,18 +103695,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90964] = 4, - ACTIONS(292), 1, + [90708] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(653), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(694), 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, + [90752] = 4, + ACTIONS(1556), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(1637), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(1634), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104173,6 +103756,45 @@ static const uint16_t ts_small_parse_table[] = { 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, + [90796] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1672), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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, @@ -104192,16 +103814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91008] = 3, + [90838] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 4, + ACTIONS(1679), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(1677), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104231,16 +103853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91050] = 3, + [90880] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 4, + ACTIONS(2552), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104270,16 +103892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91092] = 3, + [90922] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 4, + ACTIONS(2483), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104309,16 +103931,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91134] = 3, + [90964] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(653), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(694), 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, + [91008] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(653), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(694), 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, + [91052] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(653), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(694), 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, + [91096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 4, + ACTIONS(2527), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(2525), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104348,16 +104090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91176] = 3, + [91138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 4, + ACTIONS(2519), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 29, + ACTIONS(2517), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104387,24 +104129,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91218] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [91180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(2535), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(2533), 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, @@ -104427,527 +104168,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91262] = 3, + [91222] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 4, + ACTIONS(653), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(694), 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91304] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1657), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 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, - [91348] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2509), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2507), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(651), 15, 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, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91390] = 3, + [91268] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(1689), 3, 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91432] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2491), 4, + ACTIONS(1694), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2489), 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91474] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2533), 4, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2531), 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91516] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2537), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2535), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1696), 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_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, - [91558] = 5, + 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, + [91311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1668), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 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(667), 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, - [91604] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(669), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 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(667), 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, - [91650] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1694), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(1666), 19, 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_EQ, 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, - [91692] = 3, + 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, + [91352] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1688), 29, + ACTIONS(1659), 3, 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91734] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1671), 4, + ACTIONS(1664), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 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_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, - [91776] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1565), 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_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, - [91818] = 4, + 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, + [91395] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(710), 3, + ACTIONS(1611), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(669), 13, + ACTIONS(1616), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104961,7 +104347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, + ACTIONS(1620), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104978,11 +104364,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91861] = 3, + [91438] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 13, + ACTIONS(1672), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104996,7 +104382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1688), 19, + ACTIONS(1670), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105016,11 +104402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91902] = 3, + [91479] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 13, + ACTIONS(1549), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1554), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105034,13 +104424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1669), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1565), 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, @@ -105054,11 +104441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91943] = 3, + [91522] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 13, + ACTIONS(1672), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105072,7 +104459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1692), 19, + ACTIONS(1670), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105092,15 +104479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91984] = 4, + [91563] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 3, + ACTIONS(694), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1635), 13, + ACTIONS(653), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105114,7 +104501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1637), 16, + ACTIONS(651), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105131,15 +104518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92027] = 4, + [91606] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 3, + ACTIONS(269), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1657), 13, + ACTIONS(271), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105153,7 +104540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 16, + ACTIONS(312), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105170,92 +104557,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92070] = 3, + [91649] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(269), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(271), 13, + anon_sym_STAR, 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_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, - [92111] = 3, + ACTIONS(312), 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, + [91692] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(1634), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1637), 13, + anon_sym_STAR, 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_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, - [92152] = 3, + ACTIONS(1630), 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, + [91735] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(1637), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(1634), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105284,15 +104673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92193] = 4, + [91776] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 3, + ACTIONS(694), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1682), 13, + ACTIONS(653), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105306,7 +104695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1686), 16, + ACTIONS(651), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105323,11 +104712,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92236] = 3, + [91819] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 13, + ACTIONS(1679), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105341,7 +104730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1645), 19, + ACTIONS(1677), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105361,11 +104750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92277] = 3, + [91860] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 13, + ACTIONS(1679), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105379,7 +104768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1641), 19, + ACTIONS(1677), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105399,205 +104788,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92318] = 3, + [91901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 13, + ACTIONS(1637), 4, 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(1641), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1634), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - 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, - [92359] = 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_as, 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_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(320), 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, - [92402] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1662), 3, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1667), 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_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(1581), 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, - [92445] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91942] = 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(1637), 4, 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(320), 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, - [92488] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1565), 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1634), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1570), 13, - anon_sym_STAR, + 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_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(1581), 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, - [92531] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91983] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 13, + ACTIONS(1687), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105611,7 +104882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1645), 19, + ACTIONS(1685), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105631,15 +104902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92572] = 4, + [92024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(710), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(669), 13, + ACTIONS(1628), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105653,10 +104920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, + ACTIONS(1626), 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, @@ -105670,51 +104940,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92615] = 20, - ACTIONS(328), 1, + [92065] = 20, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2558), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2580), 1, + ACTIONS(2564), 1, anon_sym_if, - ACTIONS(2582), 1, + ACTIONS(2566), 1, anon_sym_COLON, - ACTIONS(2584), 1, + ACTIONS(2568), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2161), 1, + STATE(2163), 1, sym_case_pattern, - STATE(2625), 1, + STATE(2739), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, + STATE(2189), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2574), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(1896), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105724,51 +104994,51 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92689] = 20, - ACTIONS(328), 1, + [92139] = 20, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2558), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2580), 1, + ACTIONS(2564), 1, anon_sym_if, - ACTIONS(2584), 1, + ACTIONS(2568), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2598), 1, + ACTIONS(2582), 1, anon_sym_COLON, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2161), 1, + STATE(2163), 1, sym_case_pattern, - STATE(2662), 1, + STATE(2763), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, + STATE(2189), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2574), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(1896), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105778,47 +105048,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92763] = 18, - ACTIONS(801), 1, + [92213] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, - anon_sym_RPAREN, - ACTIONS(2606), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2594), 1, + anon_sym_RBRACK, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2604), 1, sym_float, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2241), 1, + STATE(2158), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105828,47 +105098,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92831] = 18, - ACTIONS(801), 1, + [92281] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2610), 1, + anon_sym_RPAREN, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2622), 1, - anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105878,47 +105148,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92899] = 18, - ACTIONS(801), 1, + [92349] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2200), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105928,47 +105198,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92967] = 18, - ACTIONS(801), 1, + [92417] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, - sym_float, ACTIONS(2626), 1, + sym_float, + ACTIONS(2630), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105978,47 +105248,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93035] = 18, - ACTIONS(801), 1, + [92485] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2202), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106028,47 +105298,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93103] = 18, - ACTIONS(755), 1, + [92553] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2640), 1, - anon_sym_RBRACK, - ACTIONS(2642), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2604), 1, sym_float, - STATE(1877), 1, + ACTIONS(2634), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2203), 1, + STATE(2331), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106078,47 +105348,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93171] = 18, - ACTIONS(801), 1, + [92621] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2604), 1, sym_float, - ACTIONS(2652), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2636), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2204), 1, + STATE(2201), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106128,47 +105398,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93239] = 18, - ACTIONS(801), 1, + [92689] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2654), 1, + ACTIONS(2638), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106178,47 +105448,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93307] = 18, - ACTIONS(755), 1, + [92757] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2656), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2640), 1, + anon_sym_RPAREN, + STATE(1845), 1, sym_string, - STATE(2085), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2120), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106228,47 +105498,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93375] = 18, - ACTIONS(801), 1, + [92825] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2604), 1, sym_float, - ACTIONS(2658), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2642), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2121), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106278,47 +105548,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93443] = 18, - ACTIONS(755), 1, + [92893] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2660), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2644), 1, + anon_sym_RPAREN, + STATE(1845), 1, sym_string, - STATE(2085), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106328,47 +105598,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93511] = 18, - ACTIONS(801), 1, + [92961] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2662), 1, + ACTIONS(2646), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2128), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106378,47 +105648,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93579] = 18, - ACTIONS(801), 1, + [93029] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2664), 1, + ACTIONS(2648), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106428,47 +105698,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93647] = 18, - ACTIONS(755), 1, + [93097] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2604), 1, sym_float, - ACTIONS(2666), 1, + ACTIONS(2650), 1, anon_sym_RBRACK, - STATE(1877), 1, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2244), 1, + STATE(2331), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106478,47 +105748,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93715] = 18, - ACTIONS(801), 1, + [93165] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2668), 1, + ACTIONS(2652), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2153), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106528,47 +105798,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93783] = 18, - ACTIONS(755), 1, + [93233] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2604), 1, sym_float, - ACTIONS(2670), 1, + ACTIONS(2654), 1, anon_sym_RBRACK, - STATE(1877), 1, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2154), 1, + STATE(2331), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106578,47 +105848,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93851] = 18, - ACTIONS(801), 1, + [93301] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2672), 1, + ACTIONS(2656), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106628,47 +105898,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93919] = 18, - ACTIONS(755), 1, + [93369] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2604), 1, sym_float, - ACTIONS(2674), 1, + ACTIONS(2658), 1, anon_sym_RBRACK, - STATE(1877), 1, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2331), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106678,47 +105948,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93987] = 18, - ACTIONS(801), 1, + [93437] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2676), 1, + ACTIONS(2660), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2163), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106728,47 +105998,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94055] = 18, - ACTIONS(801), 1, + [93505] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2678), 1, + ACTIONS(2662), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106778,47 +106048,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94123] = 18, - ACTIONS(755), 1, + [93573] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2680), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2664), 1, + anon_sym_RPAREN, + STATE(1845), 1, sym_string, - STATE(2085), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2216), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106828,47 +106098,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94191] = 18, - ACTIONS(801), 1, + [93641] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2682), 1, + ACTIONS(2666), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2160), 1, + STATE(2172), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106878,47 +106148,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94259] = 18, - ACTIONS(801), 1, + [93709] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2684), 1, + ACTIONS(2668), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106928,47 +106198,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94327] = 18, - ACTIONS(755), 1, + [93777] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2686), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2670), 1, + anon_sym_RPAREN, + STATE(1845), 1, sym_string, - STATE(2085), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106978,47 +106248,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94395] = 18, - ACTIONS(801), 1, + [93845] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2604), 1, sym_float, - ACTIONS(2688), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2672), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2331), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107028,47 +106298,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94463] = 18, - ACTIONS(801), 1, + [93913] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2604), 1, sym_float, - ACTIONS(2690), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2674), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2331), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107078,47 +106348,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94531] = 18, - ACTIONS(801), 1, + [93981] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2692), 1, + ACTIONS(2676), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2131), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107128,47 +106398,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94599] = 18, - ACTIONS(755), 1, + [94049] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2694), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2678), 1, + anon_sym_RPAREN, + STATE(1845), 1, sym_string, - STATE(2085), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2157), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107178,47 +106448,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94667] = 18, - ACTIONS(801), 1, + [94117] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2680), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107228,47 +106498,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94735] = 18, - ACTIONS(801), 1, + [94185] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2604), 1, sym_float, - ACTIONS(2698), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2682), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2190), 1, + STATE(2152), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107278,47 +106548,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94803] = 18, - ACTIONS(755), 1, + [94253] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2700), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2684), 1, + anon_sym_RPAREN, + STATE(1845), 1, sym_string, - STATE(2085), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2191), 1, + STATE(2160), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107328,47 +106598,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94871] = 18, - ACTIONS(801), 1, + [94321] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2702), 1, + ACTIONS(2686), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107378,47 +106648,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94939] = 18, - ACTIONS(801), 1, + [94389] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2704), 1, + ACTIONS(2688), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2194), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107428,47 +106698,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95007] = 18, - ACTIONS(801), 1, + [94457] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2604), 1, sym_float, - ACTIONS(2706), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2690), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2331), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107478,47 +106748,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95075] = 18, - ACTIONS(755), 1, + [94525] = 18, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2708), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2692), 1, + anon_sym_RPAREN, + STATE(1845), 1, sym_string, - STATE(2085), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107528,47 +106798,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95143] = 18, - ACTIONS(755), 1, + [94593] = 18, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2604), 1, sym_float, - ACTIONS(2710), 1, + ACTIONS(2694), 1, anon_sym_RBRACK, - STATE(1877), 1, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2331), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107578,45 +106848,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95211] = 17, - ACTIONS(328), 1, + [94661] = 17, + ACTIONS(692), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2696), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2698), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2704), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2706), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2710), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2712), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2714), 1, sym_float, - STATE(1820), 1, + STATE(1852), 1, sym_string, - STATE(1912), 1, + STATE(2094), 1, sym_dotted_name, - STATE(1913), 1, + STATE(2429), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, + STATE(2318), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2708), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(2098), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107626,45 +106896,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95276] = 17, - ACTIONS(801), 1, + [94726] = 17, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2604), 1, sym_float, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2034), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2331), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2286), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2598), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2035), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107674,45 +106944,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95341] = 17, - ACTIONS(755), 1, + [94791] = 17, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2558), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2568), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2580), 1, sym_float, - STATE(1877), 1, + STATE(1782), 1, sym_string, - STATE(2085), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2163), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2189), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2574), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(1896), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107722,45 +106992,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95406] = 17, - ACTIONS(328), 1, + [94856] = 17, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2558), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2568), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2161), 1, + STATE(1891), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, + STATE(2189), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2574), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(1896), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107770,45 +107040,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95471] = 17, - ACTIONS(708), 1, + [94921] = 17, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2712), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2720), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2722), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2726), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2728), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2730), 1, + ACTIONS(2626), 1, sym_float, - STATE(1894), 1, + STATE(1845), 1, sym_string, - STATE(2008), 1, + STATE(2065), 1, sym_dotted_name, - STATE(2272), 1, + STATE(2385), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2493), 2, + STATE(2411), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2724), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2093), 9, + STATE(2067), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107818,46 +107088,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95536] = 18, - ACTIONS(328), 1, + [94986] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2736), 1, + ACTIONS(2720), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107866,46 +107136,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95602] = 18, - ACTIONS(328), 1, + [95052] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2738), 1, + ACTIONS(2722), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107914,46 +107184,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95668] = 18, - ACTIONS(328), 1, + [95118] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2740), 1, + ACTIONS(2724), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107962,46 +107232,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95734] = 18, - ACTIONS(328), 1, + [95184] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2742), 1, + ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108010,46 +107280,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95800] = 18, - ACTIONS(328), 1, + [95250] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2744), 1, + ACTIONS(2728), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108058,46 +107328,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95866] = 18, - ACTIONS(328), 1, + [95316] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2746), 1, + ACTIONS(2730), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108106,46 +107376,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95932] = 18, - ACTIONS(328), 1, + [95382] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2732), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2046), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2323), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108154,46 +107424,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95998] = 18, - ACTIONS(328), 1, + [95448] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2750), 1, + ACTIONS(2734), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108202,46 +107472,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96064] = 18, - ACTIONS(328), 1, + [95514] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2752), 1, + ACTIONS(2736), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108250,46 +107520,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96130] = 18, - ACTIONS(328), 1, + [95580] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2754), 1, + ACTIONS(2738), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108298,46 +107568,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96196] = 18, - ACTIONS(328), 1, + [95646] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2756), 1, + ACTIONS(2740), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2013), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2394), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108346,46 +107616,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96262] = 18, - ACTIONS(328), 1, + [95712] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2758), 1, + ACTIONS(2742), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2082), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2328), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108394,46 +107664,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96328] = 18, - ACTIONS(328), 1, + [95778] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2744), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2021), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2478), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108442,46 +107712,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96394] = 18, - ACTIONS(328), 1, + [95844] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2762), 1, + ACTIONS(2746), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2028), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2268), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108490,46 +107760,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96460] = 18, - ACTIONS(328), 1, + [95910] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2764), 1, + ACTIONS(2748), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2108), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2287), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108538,46 +107808,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96526] = 18, - ACTIONS(328), 1, + [95976] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2766), 1, + ACTIONS(2750), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2044), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2286), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108586,46 +107856,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96592] = 18, - ACTIONS(328), 1, + [96042] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2768), 1, + ACTIONS(2752), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108634,46 +107904,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96658] = 18, - ACTIONS(328), 1, + [96108] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2770), 1, + ACTIONS(2754), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108682,46 +107952,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96724] = 18, - ACTIONS(328), 1, + [96174] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2772), 1, + ACTIONS(2756), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2014), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2416), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108730,46 +108000,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96790] = 18, - ACTIONS(328), 1, + [96240] = 18, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - ACTIONS(2774), 1, + ACTIONS(2758), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108778,44 +108048,44 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96856] = 17, - ACTIONS(328), 1, + [96306] = 17, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2716), 1, sym_identifier, - STATE(1820), 1, + STATE(1782), 1, sym_string, - STATE(1912), 1, + STATE(1885), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2187), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2593), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2718), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2392), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108824,40 +108094,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96919] = 15, - ACTIONS(755), 1, + [96369] = 15, + ACTIONS(692), 1, sym_string_start, - ACTIONS(2632), 1, + ACTIONS(2698), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2704), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2706), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2710), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2712), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2714), 1, sym_float, - ACTIONS(2776), 1, + ACTIONS(2760), 1, sym_identifier, - STATE(1877), 1, + STATE(1852), 1, sym_string, - STATE(2085), 1, + STATE(2094), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2778), 4, + ACTIONS(2762), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2059), 9, + STATE(1999), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108867,40 +108137,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96977] = 15, - ACTIONS(755), 1, + [96427] = 15, + ACTIONS(692), 1, sym_string_start, - ACTIONS(2632), 1, + ACTIONS(2698), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2700), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2702), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2704), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2706), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2710), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2712), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2714), 1, sym_float, - ACTIONS(2776), 1, + ACTIONS(2760), 1, sym_identifier, - STATE(1877), 1, + STATE(1852), 1, sym_string, - STATE(2085), 1, + STATE(2094), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 4, + ACTIONS(2764), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2058), 9, + STATE(2000), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108910,83 +108180,77 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97035] = 15, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(2714), 1, - anon_sym_LPAREN, - ACTIONS(2716), 1, - anon_sym_STAR, - ACTIONS(2718), 1, - anon_sym_STAR_STAR, - ACTIONS(2720), 1, - anon_sym_LBRACK, - ACTIONS(2722), 1, - anon_sym_DASH, - ACTIONS(2726), 1, - anon_sym_LBRACE, - ACTIONS(2728), 1, - sym_integer, - ACTIONS(2730), 1, - sym_float, - ACTIONS(2782), 1, - sym_identifier, - STATE(1894), 1, - sym_string, - STATE(2008), 1, - sym_dotted_name, + [96485] = 9, + ACTIONS(2104), 1, + anon_sym_not, + ACTIONS(2110), 1, + anon_sym_is, + ACTIONS(2768), 1, + anon_sym_EQ, + STATE(1550), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2784), 4, - anon_sym__, - sym_true, - sym_false, - sym_none, - STATE(2066), 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, - [97093] = 15, - ACTIONS(801), 1, + ACTIONS(2112), 2, + anon_sym_LT, + anon_sym_GT, + STATE(909), 2, + sym__not_in, + sym__is_not, + ACTIONS(2090), 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(2766), 11, + 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_PIPE, + anon_sym_and, + anon_sym_or, + [96531] = 15, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2602), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2786), 1, + ACTIONS(2716), 1, sym_identifier, - STATE(1858), 1, + STATE(1782), 1, sym_string, - STATE(2069), 1, + STATE(1885), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2788), 4, + ACTIONS(2770), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1892), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108996,40 +108260,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97151] = 15, - ACTIONS(801), 1, + [96589] = 15, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2786), 1, + ACTIONS(2772), 1, sym_identifier, - STATE(1858), 1, + STATE(1845), 1, sym_string, - STATE(2069), 1, + STATE(2065), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2790), 4, + ACTIONS(2774), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2105), 9, + STATE(1990), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109039,40 +108303,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97209] = 15, - ACTIONS(328), 1, + [96647] = 15, + ACTIONS(785), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2732), 1, + ACTIONS(2772), 1, sym_identifier, - STATE(1820), 1, + STATE(1845), 1, sym_string, - STATE(1912), 1, + STATE(2065), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2792), 4, + ACTIONS(2776), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1972), 9, + STATE(1991), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109082,77 +108346,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97267] = 9, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2126), 1, - anon_sym_is, - ACTIONS(2796), 1, - anon_sym_EQ, - STATE(1567), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2128), 2, - anon_sym_LT, - anon_sym_GT, - STATE(965), 2, - sym__not_in, - sym__is_not, - ACTIONS(2106), 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(2794), 11, - 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_PIPE, - anon_sym_and, - anon_sym_or, - [97313] = 15, - ACTIONS(708), 1, + [96705] = 15, + ACTIONS(320), 1, sym_string_start, - ACTIONS(2714), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2568), 1, anon_sym_STAR_STAR, - ACTIONS(2720), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2722), 1, + ACTIONS(2572), 1, anon_sym_DASH, - ACTIONS(2726), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2728), 1, + ACTIONS(2578), 1, sym_integer, - ACTIONS(2730), 1, + ACTIONS(2580), 1, sym_float, - ACTIONS(2782), 1, + ACTIONS(2716), 1, sym_identifier, - STATE(1894), 1, + STATE(1782), 1, sym_string, - STATE(2008), 1, + STATE(1885), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2798), 4, + ACTIONS(2778), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(1900), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109162,40 +108389,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97371] = 15, - ACTIONS(328), 1, + [96763] = 15, + ACTIONS(763), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2586), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2602), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2604), 1, sym_float, - ACTIONS(2732), 1, + ACTIONS(2780), 1, sym_identifier, - STATE(1820), 1, + STATE(1837), 1, sym_string, - STATE(1912), 1, + STATE(2034), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2800), 4, + ACTIONS(2782), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1895), 9, + STATE(2047), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109205,32 +108432,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97429] = 9, - ACTIONS(2807), 1, + [96821] = 9, + ACTIONS(2789), 1, anon_sym_EQ, - ACTIONS(2809), 1, + ACTIONS(2791), 1, anon_sym_not, - ACTIONS(2812), 1, + ACTIONS(2794), 1, anon_sym_is, - STATE(1567), 1, + STATE(1550), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2815), 2, + ACTIONS(2797), 2, anon_sym_LT, anon_sym_GT, - STATE(965), 2, + STATE(909), 2, sym__not_in, sym__is_not, - ACTIONS(2804), 6, + ACTIONS(2786), 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(2802), 11, + ACTIONS(2784), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -109242,32 +108469,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97475] = 9, - ACTIONS(2807), 1, + [96867] = 15, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(2586), 1, + anon_sym_LPAREN, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2590), 1, + anon_sym_STAR_STAR, + ACTIONS(2592), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_DASH, + ACTIONS(2600), 1, + anon_sym_LBRACE, + ACTIONS(2602), 1, + sym_integer, + ACTIONS(2604), 1, + sym_float, + ACTIONS(2780), 1, + sym_identifier, + STATE(1837), 1, + sym_string, + STATE(2034), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2800), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2048), 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, + [96925] = 9, + ACTIONS(2789), 1, anon_sym_as, - ACTIONS(2809), 1, + ACTIONS(2791), 1, anon_sym_not, - ACTIONS(2821), 1, + ACTIONS(2805), 1, anon_sym_is, - STATE(1568), 1, + STATE(1552), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2824), 2, + ACTIONS(2808), 2, anon_sym_LT, anon_sym_GT, - STATE(897), 2, + STATE(933), 2, sym__not_in, sym__is_not, - ACTIONS(2818), 6, + ACTIONS(2802), 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(2802), 10, + ACTIONS(2784), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -109278,32 +108548,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97520] = 9, - ACTIONS(2120), 1, + [96970] = 9, + ACTIONS(2104), 1, anon_sym_not, - ACTIONS(2262), 1, + ACTIONS(2278), 1, anon_sym_is, - ACTIONS(2796), 1, + ACTIONS(2768), 1, anon_sym_as, - STATE(1568), 1, + STATE(1552), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2264), 2, + ACTIONS(2280), 2, anon_sym_LT, anon_sym_GT, - STATE(897), 2, + STATE(933), 2, sym__not_in, sym__is_not, - ACTIONS(2246), 6, + ACTIONS(2262), 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(2794), 10, + ACTIONS(2766), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -109314,32 +108584,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97565] = 9, - ACTIONS(2807), 1, + [97015] = 9, + ACTIONS(2789), 1, anon_sym_EQ, - ACTIONS(2809), 1, + ACTIONS(2791), 1, anon_sym_not, - ACTIONS(2830), 1, + ACTIONS(2814), 1, anon_sym_is, - STATE(1570), 1, + STATE(1554), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2833), 2, + ACTIONS(2817), 2, anon_sym_LT, anon_sym_GT, - STATE(957), 2, + STATE(893), 2, sym__not_in, sym__is_not, - ACTIONS(2827), 6, + ACTIONS(2811), 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(2802), 9, + ACTIONS(2784), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -109349,67 +108619,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97609] = 9, - ACTIONS(2807), 1, - anon_sym_EQ, - ACTIONS(2809), 1, + [97059] = 9, + ACTIONS(2104), 1, anon_sym_not, - ACTIONS(2839), 1, + ACTIONS(2330), 1, anon_sym_is, - STATE(1571), 1, + ACTIONS(2768), 1, + anon_sym_EQ, + STATE(1554), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2842), 2, + ACTIONS(2332), 2, anon_sym_LT, anon_sym_GT, - STATE(904), 2, + STATE(893), 2, sym__not_in, sym__is_not, - ACTIONS(2836), 6, + ACTIONS(2314), 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(2802), 9, + ACTIONS(2766), 9, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97653] = 9, - ACTIONS(2120), 1, + [97103] = 9, + ACTIONS(2104), 1, anon_sym_not, - ACTIONS(2381), 1, + ACTIONS(2365), 1, anon_sym_is, - ACTIONS(2796), 1, + ACTIONS(2768), 1, anon_sym_EQ, - STATE(1571), 1, + STATE(1557), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2383), 2, + ACTIONS(2367), 2, anon_sym_LT, anon_sym_GT, - STATE(904), 2, + STATE(859), 2, sym__not_in, sym__is_not, - ACTIONS(2365), 6, + ACTIONS(2349), 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(2794), 9, + ACTIONS(2766), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109419,101 +108689,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97697] = 9, - ACTIONS(2120), 1, + [97147] = 9, + ACTIONS(2789), 1, + anon_sym_EQ, + ACTIONS(2791), 1, anon_sym_not, - ACTIONS(2345), 1, + ACTIONS(2823), 1, anon_sym_is, - ACTIONS(2796), 1, - anon_sym_EQ, - STATE(1570), 1, + STATE(1557), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2347), 2, + ACTIONS(2826), 2, anon_sym_LT, anon_sym_GT, - STATE(957), 2, + STATE(859), 2, sym__not_in, sym__is_not, - ACTIONS(2329), 6, + ACTIONS(2820), 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(2794), 9, + ACTIONS(2784), 9, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97741] = 9, - ACTIONS(2120), 1, + [97191] = 9, + ACTIONS(2104), 1, anon_sym_not, - ACTIONS(2310), 1, + ACTIONS(2222), 1, anon_sym_is, - ACTIONS(2796), 1, - anon_sym_as, - STATE(1577), 1, + ACTIONS(2768), 1, + anon_sym_EQ, + STATE(1559), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2312), 2, + ACTIONS(2224), 2, anon_sym_LT, anon_sym_GT, - STATE(932), 2, + STATE(858), 2, sym__not_in, sym__is_not, - ACTIONS(2294), 6, + ACTIONS(2206), 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(2794), 8, + ACTIONS(2766), 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, - [97784] = 9, - ACTIONS(2807), 1, + sym_type_conversion, + [97234] = 9, + ACTIONS(2789), 1, anon_sym_EQ, - ACTIONS(2809), 1, + ACTIONS(2791), 1, anon_sym_not, - ACTIONS(2848), 1, + ACTIONS(2832), 1, anon_sym_is, - STATE(1575), 1, + STATE(1559), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2851), 2, + ACTIONS(2835), 2, anon_sym_LT, anon_sym_GT, - STATE(954), 2, + STATE(858), 2, sym__not_in, sym__is_not, - ACTIONS(2845), 6, + ACTIONS(2829), 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(2802), 8, + ACTIONS(2784), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -109522,66 +108792,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [97827] = 9, - ACTIONS(2120), 1, + [97277] = 8, + ACTIONS(2791), 1, anon_sym_not, - ACTIONS(2234), 1, + ACTIONS(2841), 1, anon_sym_is, - ACTIONS(2796), 1, - anon_sym_EQ, - STATE(1575), 1, + STATE(1560), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2236), 2, + ACTIONS(2844), 2, anon_sym_LT, anon_sym_GT, - STATE(954), 2, + STATE(927), 2, sym__not_in, sym__is_not, - ACTIONS(2218), 6, + ACTIONS(2838), 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(2794), 8, + ACTIONS(2784), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [97870] = 9, - ACTIONS(2807), 1, - anon_sym_as, - ACTIONS(2809), 1, + [97318] = 9, + ACTIONS(2104), 1, anon_sym_not, - ACTIONS(2857), 1, + ACTIONS(2184), 1, anon_sym_is, - STATE(1577), 1, + ACTIONS(2768), 1, + anon_sym_as, + STATE(1563), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 2, + ACTIONS(2186), 2, anon_sym_LT, anon_sym_GT, - STATE(932), 2, + STATE(908), 2, sym__not_in, sym__is_not, - ACTIONS(2854), 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(2802), 8, + ACTIONS(2766), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -109590,30 +108859,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97913] = 8, - ACTIONS(2120), 1, + [97361] = 8, + ACTIONS(2104), 1, anon_sym_not, - ACTIONS(2462), 1, + ACTIONS(2440), 1, anon_sym_is, - STATE(1579), 1, + STATE(1560), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2464), 2, + ACTIONS(2442), 2, anon_sym_LT, anon_sym_GT, - STATE(945), 2, + STATE(927), 2, sym__not_in, sym__is_not, - ACTIONS(2446), 6, + ACTIONS(2424), 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(2794), 9, + ACTIONS(2766), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109623,65 +108892,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97954] = 8, - ACTIONS(2809), 1, + [97402] = 9, + ACTIONS(2789), 1, + anon_sym_as, + ACTIONS(2791), 1, anon_sym_not, - ACTIONS(2866), 1, + ACTIONS(2850), 1, anon_sym_is, - STATE(1579), 1, + STATE(1563), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2869), 2, + ACTIONS(2853), 2, anon_sym_LT, anon_sym_GT, - STATE(945), 2, + STATE(908), 2, sym__not_in, sym__is_not, - ACTIONS(2863), 6, + ACTIONS(2847), 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(2802), 9, - anon_sym_DOT, + ACTIONS(2784), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97995] = 9, - ACTIONS(2807), 1, + [97445] = 9, + ACTIONS(2789), 1, anon_sym_as, - ACTIONS(2809), 1, + ACTIONS(2791), 1, anon_sym_not, - ACTIONS(2875), 1, + ACTIONS(2859), 1, anon_sym_is, - STATE(1580), 1, + STATE(1564), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2878), 2, + ACTIONS(2862), 2, anon_sym_LT, anon_sym_GT, - STATE(876), 2, + STATE(914), 2, sym__not_in, sym__is_not, - ACTIONS(2872), 6, + ACTIONS(2856), 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(2802), 7, + ACTIONS(2784), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -109689,47 +108959,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [98037] = 3, + [97487] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2883), 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(2881), 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, - [98067] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 5, + ACTIONS(312), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(277), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109744,20 +108987,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98099] = 4, + [97519] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 5, + ACTIONS(312), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(277), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109772,20 +109015,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98131] = 4, + [97551] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 2, + ACTIONS(1664), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 5, + ACTIONS(1565), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1662), 14, + ACTIONS(1659), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109800,20 +109043,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98163] = 4, + [97583] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(1554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 5, + ACTIONS(1565), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1565), 14, + ACTIONS(1549), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109828,20 +109071,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98195] = 4, + [97615] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, + ACTIONS(1694), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1686), 5, + ACTIONS(1696), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1677), 14, + ACTIONS(1689), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109856,20 +109099,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98227] = 4, + [97647] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 2, + ACTIONS(1616), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 5, + ACTIONS(1620), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1630), 14, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109884,11 +109127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98259] = 3, + [97679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2887), 10, + ACTIONS(2867), 10, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, @@ -109899,7 +109142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2885), 11, + ACTIONS(2865), 11, anon_sym_print, anon_sym_match, anon_sym_async, @@ -109911,32 +109154,32 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [98289] = 9, - ACTIONS(2120), 1, + [97709] = 9, + ACTIONS(2104), 1, anon_sym_not, - ACTIONS(2409), 1, + ACTIONS(2393), 1, anon_sym_is, - ACTIONS(2796), 1, + ACTIONS(2768), 1, anon_sym_as, - STATE(1580), 1, + STATE(1564), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 2, + ACTIONS(2395), 2, anon_sym_LT, anon_sym_GT, - STATE(876), 2, + STATE(914), 2, sym__not_in, sym__is_not, - ACTIONS(2393), 6, + ACTIONS(2377), 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(2794), 7, + ACTIONS(2766), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -109944,15 +109187,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [98331] = 4, - ACTIONS(2891), 1, + [97751] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2871), 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(2869), 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, + [97781] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(651), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(269), 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, + [97811] = 4, + ACTIONS(2875), 1, + anon_sym_COMMA, + STATE(1575), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2873), 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, + [97841] = 4, + ACTIONS(2878), 1, anon_sym_COMMA, - STATE(1590), 1, + STATE(1575), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 17, + ACTIONS(979), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -109970,18 +109292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98361] = 4, + [97871] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(667), 3, + ACTIONS(1630), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1549), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109996,18 +109318,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98391] = 4, + [97901] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1652), 3, + ACTIONS(651), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1565), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110022,18 +109344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98421] = 4, + [97931] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(667), 3, + ACTIONS(1423), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110048,18 +109370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98451] = 4, + [97961] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2894), 3, + ACTIONS(1423), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1565), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110074,44 +109396,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98481] = 4, - ACTIONS(2896), 1, - anon_sym_COMMA, - STATE(1590), 1, - aux_sym__patterns_repeat1, + [97991] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(995), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(1554), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2880), 3, + anon_sym_RPAREN, + 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, - [98511] = 4, + ACTIONS(1549), 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, + [98021] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 3, - anon_sym_RPAREN, + ACTIONS(1423), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110126,18 +109447,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98541] = 4, + [98050] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 3, + ACTIONS(1565), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1549), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110152,17 +109472,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98571] = 4, + [98079] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1667), 2, + ACTIONS(1694), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1662), 14, + ACTIONS(1696), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1689), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110177,17 +109497,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98600] = 4, + [98108] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1667), 2, + ACTIONS(1616), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1662), 14, + ACTIONS(1620), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110202,17 +109522,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98629] = 4, + [98137] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(2882), 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, + [98162] = 2, + 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, + [98187] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2873), 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, + [98212] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 2, + ACTIONS(312), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1565), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110227,17 +109616,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98658] = 4, + [98241] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, + ACTIONS(312), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(277), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110252,17 +109641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98687] = 4, + [98270] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, + ACTIONS(312), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(277), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110277,17 +109666,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98716] = 4, + [98299] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1565), 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, + [98324] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 2, + ACTIONS(1423), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(269), 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, + [98353] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1565), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1664), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1659), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110302,17 +109739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98745] = 4, + [98382] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 2, + ACTIONS(1565), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + anon_sym_in, + ACTIONS(1549), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110327,17 +109764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98774] = 4, + [98411] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(1554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2894), 2, + ACTIONS(2880), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1565), 14, + ACTIONS(1549), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110352,17 +109789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98803] = 4, + [98440] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1667), 2, + ACTIONS(1694), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1662), 14, + ACTIONS(1696), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1689), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110377,67 +109814,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98832] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1570), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1581), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1565), 14, + [98469] = 13, + ACTIONS(2302), 1, anon_sym_DOT, + ACTIONS(2304), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2359), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2361), 1, anon_sym_AMP, + ACTIONS(2363), 1, anon_sym_CARET, - anon_sym_LT_LT, - [98861] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1686), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1677), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2347), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2357), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1286), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2355), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98890] = 4, + [98516] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 2, + ACTIONS(1554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, - anon_sym_RPAREN, + ACTIONS(1630), 2, anon_sym_COMMA, - ACTIONS(1630), 14, + anon_sym_COLON, + ACTIONS(1549), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110452,17 +109873,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98919] = 4, + [98545] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 2, + ACTIONS(312), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1565), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110477,17 +109898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98948] = 4, + [98574] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1565), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1664), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(667), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1659), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110502,17 +109923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98977] = 4, + [98603] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1565), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1664), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(667), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1659), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110527,17 +109948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99006] = 4, + [98632] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, + ACTIONS(1554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1686), 2, + ACTIONS(1565), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1677), 14, + anon_sym_RBRACK, + ACTIONS(1549), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110552,40 +109973,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99035] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2889), 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, - [99060] = 4, + [98661] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, + ACTIONS(651), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(277), 14, + anon_sym_COLON, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110600,74 +109998,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99089] = 13, - ACTIONS(2349), 1, - anon_sym_DOT, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2375), 1, - anon_sym_PIPE, - ACTIONS(2377), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_CARET, + [98690] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [99136] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2898), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(651), 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, - [99161] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(277), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110682,17 +110023,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99190] = 4, + [98719] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_RPAREN, + ACTIONS(312), 2, anon_sym_COMMA, - ACTIONS(277), 14, + anon_sym_RBRACK, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110707,17 +110048,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99219] = 4, + [98748] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(312), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1630), 14, + anon_sym_RBRACK, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110732,17 +110073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99248] = 4, + [98777] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, + ACTIONS(1694), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1686), 2, + ACTIONS(1696), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1677), 14, + ACTIONS(1689), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110757,371 +110098,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99277] = 13, - ACTIONS(2357), 1, + [98806] = 13, + ACTIONS(2341), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2353), 1, anon_sym_LBRACK, - ACTIONS(2375), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2363), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2347), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2355), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99324] = 13, - ACTIONS(2098), 1, + [98853] = 13, + ACTIONS(2082), 1, anon_sym_DOT, - ACTIONS(2112), 1, + ACTIONS(2096), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2363), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2347), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2355), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99371] = 13, - ACTIONS(2359), 1, + [98900] = 13, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2363), 1, anon_sym_CARET, - ACTIONS(2385), 1, + ACTIONS(2369), 1, anon_sym_DOT, - ACTIONS(2397), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2347), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2355), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99418] = 13, - ACTIONS(2359), 1, + [98947] = 13, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2363), 1, anon_sym_CARET, - ACTIONS(2900), 1, + ACTIONS(2886), 1, anon_sym_DOT, - ACTIONS(2902), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2347), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2355), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99465] = 13, - ACTIONS(2210), 1, + [98994] = 13, + ACTIONS(2198), 1, anon_sym_DOT, - ACTIONS(2222), 1, + ACTIONS(2210), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2363), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2347), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2355), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99512] = 13, - ACTIONS(2321), 1, + [99041] = 13, + ACTIONS(2306), 1, anon_sym_DOT, - ACTIONS(2333), 1, + ACTIONS(2318), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2363), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2347), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2355), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99559] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1581), 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, - [99584] = 13, - ACTIONS(2359), 1, + [99088] = 13, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2363), 1, anon_sym_CARET, - ACTIONS(2438), 1, + ACTIONS(2416), 1, anon_sym_DOT, - ACTIONS(2450), 1, + ACTIONS(2428), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2347), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [99631] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1570), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1652), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1565), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + ACTIONS(2355), 3, 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, - [99660] = 13, - ACTIONS(2238), 1, + [99135] = 13, + ACTIONS(2254), 1, anon_sym_DOT, - ACTIONS(2250), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2363), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2347), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2355), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99707] = 13, - ACTIONS(2286), 1, + [99182] = 13, + ACTIONS(2160), 1, anon_sym_DOT, - ACTIONS(2298), 1, + ACTIONS(2172), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2363), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2345), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2347), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1286), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2355), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99754] = 4, + [99229] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 2, + ACTIONS(1616), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(1620), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1630), 14, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -111136,40 +110429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99783] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2904), 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, - [99808] = 4, + [99258] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1616), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, + ACTIONS(1620), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(277), 14, + anon_sym_in, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -111184,80 +110454,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99837] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2912), 1, - anon_sym_COLON, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2737), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99883] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2918), 1, + [99287] = 6, + ACTIONS(2890), 1, + anon_sym_COMMA, + ACTIONS(2892), 1, anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2675), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, + ACTIONS(2894), 1, + anon_sym_EQ, + STATE(1637), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99929] = 2, + ACTIONS(2896), 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, + [99319] = 4, + ACTIONS(2898), 1, + anon_sym_COMMA, + STATE(1621), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 17, - anon_sym_COMMA, + ACTIONS(2873), 15, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -111272,73 +110504,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99953] = 13, - ACTIONS(2906), 1, + [99347] = 13, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2903), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2905), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2907), 1, + anon_sym_COLON, + ACTIONS(2909), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2920), 1, - anon_sym_COLON, - STATE(2299), 1, + STATE(2238), 1, sym_parameter, - STATE(2343), 1, + STATE(2240), 1, sym_tuple_pattern, - STATE(2712), 1, + STATE(2735), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2775), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99999] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2889), 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, - [100023] = 5, - ACTIONS(2924), 1, + [99393] = 6, + ACTIONS(2892), 1, anon_sym_COLON, - ACTIONS(2926), 1, + ACTIONS(2894), 1, anon_sym_EQ, + ACTIONS(2913), 1, + anon_sym_COMMA, + STATE(1576), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2928), 13, + ACTIONS(2896), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111352,134 +110563,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100053] = 13, - ACTIONS(2906), 1, + [99425] = 13, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2903), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2905), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2909), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2930), 1, + ACTIONS(2915), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2238), 1, sym_parameter, - STATE(2343), 1, + STATE(2240), 1, sym_tuple_pattern, - STATE(2747), 1, - sym__parameters, - STATE(2755), 1, + STATE(2679), 1, sym_lambda_parameters, + STATE(2775), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100099] = 4, - ACTIONS(2932), 1, - anon_sym_COMMA, - STATE(1643), 1, - aux_sym__patterns_repeat1, + [99471] = 13, + ACTIONS(2901), 1, + sym_identifier, + ACTIONS(2903), 1, + anon_sym_LPAREN, + ACTIONS(2905), 1, + anon_sym_STAR, + ACTIONS(2909), 1, + anon_sym_STAR_STAR, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2917), 1, + anon_sym_COLON, + STATE(2238), 1, + sym_parameter, + STATE(2240), 1, + sym_tuple_pattern, + STATE(2613), 1, + sym_lambda_parameters, + STATE(2775), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 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, - [100127] = 13, - ACTIONS(2906), 1, + STATE(2538), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2526), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99517] = 13, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2903), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2905), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2909), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2935), 1, + ACTIONS(2919), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2238), 1, sym_parameter, - STATE(2343), 1, + STATE(2240), 1, sym_tuple_pattern, - STATE(2655), 1, + STATE(2759), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2775), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100173] = 13, - ACTIONS(2906), 1, + [99563] = 13, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2903), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2905), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2909), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2937), 1, + ACTIONS(2921), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2238), 1, sym_parameter, - STATE(2343), 1, + STATE(2240), 1, sym_tuple_pattern, - STATE(2623), 1, + STATE(2748), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2775), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100219] = 2, + [99609] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 17, + ACTIONS(2873), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -111497,110 +110717,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100243] = 13, - ACTIONS(2906), 1, + [99633] = 13, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2903), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2905), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2909), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2939), 1, + ACTIONS(2923), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2238), 1, sym_parameter, - STATE(2343), 1, + STATE(2240), 1, sym_tuple_pattern, - STATE(2637), 1, + STATE(2607), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2775), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100289] = 13, - ACTIONS(2906), 1, + [99679] = 13, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2903), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2905), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2909), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2941), 1, + ACTIONS(2925), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2238), 1, sym_parameter, - STATE(2343), 1, + STATE(2240), 1, sym_tuple_pattern, - STATE(2721), 1, + STATE(2686), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2775), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100335] = 13, - ACTIONS(2906), 1, + [99725] = 5, + ACTIONS(2892), 1, + anon_sym_COLON, + ACTIONS(2894), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2927), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2896), 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, + [99755] = 13, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2903), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2905), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2909), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2943), 1, + ACTIONS(2929), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2238), 1, sym_parameter, - STATE(2343), 1, + STATE(2240), 1, sym_tuple_pattern, - STATE(2738), 1, + STATE(2701), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2775), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100381] = 2, + [99801] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 17, + ACTIONS(2882), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -111618,19 +110863,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100405] = 6, - ACTIONS(2924), 1, + [99825] = 13, + ACTIONS(2901), 1, + sym_identifier, + ACTIONS(2903), 1, + anon_sym_LPAREN, + ACTIONS(2905), 1, + anon_sym_STAR, + ACTIONS(2909), 1, + anon_sym_STAR_STAR, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2931), 1, anon_sym_COLON, - ACTIONS(2926), 1, - anon_sym_EQ, - ACTIONS(2945), 1, - anon_sym_COMMA, - STATE(1595), 1, - aux_sym__patterns_repeat1, + STATE(2238), 1, + sym_parameter, + STATE(2240), 1, + sym_tuple_pattern, + STATE(2718), 1, + sym_lambda_parameters, + STATE(2775), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2538), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2526), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99871] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 13, + ACTIONS(2884), 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, @@ -111644,19 +110918,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100437] = 6, - ACTIONS(2924), 1, - anon_sym_COLON, - ACTIONS(2926), 1, - anon_sym_EQ, - ACTIONS(2947), 1, + [99895] = 13, + ACTIONS(2901), 1, + sym_identifier, + ACTIONS(2903), 1, + anon_sym_LPAREN, + ACTIONS(2905), 1, + anon_sym_STAR, + ACTIONS(2909), 1, + anon_sym_STAR_STAR, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2933), 1, + anon_sym_COLON, + STATE(2238), 1, + sym_parameter, + STATE(2240), 1, + sym_tuple_pattern, + STATE(2749), 1, + sym_lambda_parameters, + STATE(2775), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2538), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2526), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99941] = 4, + ACTIONS(2935), 1, anon_sym_COMMA, - STATE(1653), 1, + STATE(1621), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 13, + ACTIONS(979), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111670,16 +110975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100469] = 4, - ACTIONS(2949), 1, - anon_sym_COMMA, - STATE(1643), 1, - aux_sym__patterns_repeat1, + [99969] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(995), 15, + ACTIONS(1565), 17, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -111694,199 +110997,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100497] = 13, - ACTIONS(2906), 1, + [99993] = 13, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2903), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2905), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2909), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2951), 1, + ACTIONS(2937), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2238), 1, sym_parameter, - STATE(2343), 1, + STATE(2240), 1, sym_tuple_pattern, - STATE(2743), 1, + STATE(2732), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2775), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100543] = 13, - ACTIONS(2906), 1, + [100039] = 12, + ACTIONS(2939), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2941), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2943), 1, + anon_sym_RPAREN, + ACTIONS(2945), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2947), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2949), 1, anon_sym_SLASH, - ACTIONS(2953), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, + STATE(2256), 1, sym_tuple_pattern, - STATE(2747), 1, + STATE(2477), 1, + sym_parameter, + STATE(2746), 1, sym__parameters, - STATE(2787), 1, - sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2534), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100589] = 12, - ACTIONS(2955), 1, + [100082] = 11, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2957), 1, + ACTIONS(2903), 1, anon_sym_LPAREN, - ACTIONS(2959), 1, - anon_sym_RPAREN, - ACTIONS(2961), 1, + ACTIONS(2905), 1, anon_sym_STAR, - ACTIONS(2963), 1, + ACTIONS(2909), 1, anon_sym_STAR_STAR, - ACTIONS(2965), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - STATE(2417), 1, - sym_parameter, - STATE(2419), 1, + ACTIONS(2951), 1, + anon_sym_COLON, + STATE(2240), 1, sym_tuple_pattern, - STATE(2621), 1, - sym__parameters, + STATE(2582), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2422), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2547), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100632] = 11, - ACTIONS(2906), 1, + [100122] = 11, + ACTIONS(2939), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2941), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2945), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2947), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2949), 1, anon_sym_SLASH, - ACTIONS(2967), 1, - anon_sym_COLON, - STATE(2343), 1, + ACTIONS(2951), 1, + anon_sym_RPAREN, + STATE(2256), 1, sym_tuple_pattern, - STATE(2541), 1, + STATE(2539), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2534), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100672] = 11, - ACTIONS(2955), 1, + [100162] = 11, + ACTIONS(2939), 1, sym_identifier, - ACTIONS(2957), 1, + ACTIONS(2941), 1, anon_sym_LPAREN, - ACTIONS(2961), 1, + ACTIONS(2945), 1, anon_sym_STAR, - ACTIONS(2963), 1, + ACTIONS(2947), 1, anon_sym_STAR_STAR, - ACTIONS(2965), 1, + ACTIONS(2949), 1, anon_sym_SLASH, - ACTIONS(2967), 1, + ACTIONS(2953), 1, anon_sym_RPAREN, - STATE(2419), 1, + STATE(2256), 1, sym_tuple_pattern, - STATE(2516), 1, + STATE(2539), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2422), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2547), 5, + STATE(2534), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100712] = 11, - ACTIONS(2906), 1, + [100202] = 11, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2903), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2905), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2909), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2969), 1, + ACTIONS(2953), 1, anon_sym_COLON, - STATE(2343), 1, + STATE(2240), 1, sym_tuple_pattern, - STATE(2541), 1, + STATE(2582), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100752] = 4, - ACTIONS(2924), 1, + [100242] = 4, + ACTIONS(2892), 1, anon_sym_COLON, - ACTIONS(2926), 1, + ACTIONS(2894), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 13, + ACTIONS(2896), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111900,158 +111199,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100778] = 11, - ACTIONS(2955), 1, - sym_identifier, + [100268] = 11, ACTIONS(2957), 1, - anon_sym_LPAREN, + anon_sym_as, + ACTIONS(2959), 1, + anon_sym_if, ACTIONS(2961), 1, - anon_sym_STAR, + anon_sym_async, ACTIONS(2963), 1, - anon_sym_STAR_STAR, + anon_sym_for, ACTIONS(2965), 1, + anon_sym_and, + ACTIONS(2967), 1, + anon_sym_or, + STATE(1871), 1, + sym_for_in_clause, + STATE(2458), 1, + aux_sym__collection_elements_repeat1, + STATE(2767), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2955), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [100307] = 10, + ACTIONS(2939), 1, + sym_identifier, + ACTIONS(2941), 1, + anon_sym_LPAREN, + ACTIONS(2945), 1, + anon_sym_STAR, + ACTIONS(2947), 1, + anon_sym_STAR_STAR, + ACTIONS(2949), 1, anon_sym_SLASH, - ACTIONS(2969), 1, - anon_sym_RPAREN, - STATE(2419), 1, + STATE(2256), 1, sym_tuple_pattern, - STATE(2516), 1, + STATE(2539), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2422), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2547), 5, + STATE(2534), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100818] = 10, - ACTIONS(2906), 1, + [100344] = 10, + ACTIONS(2901), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2903), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2905), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2909), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - STATE(2343), 1, + STATE(2240), 1, sym_tuple_pattern, - STATE(2541), 1, + STATE(2582), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100855] = 11, + [100381] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2969), 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, + anon_sym_and, + anon_sym_or, + [100400] = 13, + ACTIONS(2971), 1, + anon_sym_COMMA, ACTIONS(2973), 1, anon_sym_as, ACTIONS(2975), 1, anon_sym_if, ACTIONS(2977), 1, - anon_sym_async, + anon_sym_COLON, ACTIONS(2979), 1, - anon_sym_for, + anon_sym_async, ACTIONS(2981), 1, - anon_sym_and, + anon_sym_for, ACTIONS(2983), 1, + anon_sym_RBRACE, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, anon_sym_or, - STATE(1846), 1, + STATE(1870), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2410), 1, aux_sym__collection_elements_repeat1, - STATE(2762), 1, + STATE(2614), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [100894] = 10, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2957), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_STAR, - ACTIONS(2963), 1, - anon_sym_STAR_STAR, - ACTIONS(2965), 1, - anon_sym_SLASH, - STATE(2419), 1, - sym_tuple_pattern, - STATE(2516), 1, - sym_parameter, + [100441] = 6, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_and, + ACTIONS(2997), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2422), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2547), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100931] = 13, - ACTIONS(2985), 1, + ACTIONS(2989), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2989), 1, - anon_sym_if, - ACTIONS(2991), 1, anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [100468] = 6, + ACTIONS(2991), 1, + anon_sym_as, ACTIONS(2993), 1, - anon_sym_async, + anon_sym_if, ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(2997), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2997), 1, anon_sym_or, - STATE(1860), 1, - sym_for_in_clause, - STATE(2338), 1, - aux_sym__collection_elements_repeat1, - STATE(2739), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100972] = 6, - ACTIONS(3005), 1, + ACTIONS(2999), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [100495] = 6, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2993), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2997), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 8, + ACTIONS(3001), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112060,60 +111389,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100999] = 13, - ACTIONS(2985), 1, + [100522] = 13, + ACTIONS(2971), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2973), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2975), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2977), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2983), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2987), 1, anon_sym_or, - STATE(1860), 1, + STATE(1870), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2410), 1, aux_sym__collection_elements_repeat1, - STATE(2699), 1, + STATE(2652), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101040] = 2, + [100563] = 5, + ACTIONS(2995), 1, + anon_sym_and, + ACTIONS(2997), 1, + anon_sym_or, + ACTIONS(3005), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 12, + ACTIONS(3003), 9, 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, + [100588] = 4, + ACTIONS(2995), 1, anon_sym_and, - anon_sym_or, - [101059] = 4, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2997), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 10, + ACTIONS(3008), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112124,11 +111456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [101082] = 2, + [100611] = 3, + ACTIONS(2995), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 12, + ACTIONS(2969), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112139,43 +111473,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, anon_sym_or, - [101101] = 13, - ACTIONS(2985), 1, + [100632] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3010), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - ACTIONS(2987), 1, anon_sym_as, - ACTIONS(2989), 1, anon_sym_if, - ACTIONS(2991), 1, anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(2997), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3001), 1, anon_sym_or, - STATE(1860), 1, - sym_for_in_clause, - STATE(2338), 1, - aux_sym__collection_elements_repeat1, - STATE(2676), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101142] = 3, - ACTIONS(3009), 1, - anon_sym_and, + [100651] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 11, + ACTIONS(2080), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112186,779 +111506,726 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + anon_sym_and, anon_sym_or, - [101163] = 13, - ACTIONS(2985), 1, + [100670] = 13, + ACTIONS(2971), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2973), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2975), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2977), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2983), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2987), 1, anon_sym_or, - STATE(1860), 1, + STATE(1870), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2410), 1, aux_sym__collection_elements_repeat1, - STATE(2641), 1, + STATE(2625), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101204] = 13, - ACTIONS(2985), 1, + [100711] = 13, + ACTIONS(2971), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2973), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2975), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2977), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2983), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2987), 1, anon_sym_or, - STATE(1860), 1, + STATE(1870), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2410), 1, aux_sym__collection_elements_repeat1, - STATE(2632), 1, + STATE(2622), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101245] = 13, - ACTIONS(2985), 1, + [100752] = 13, + ACTIONS(2971), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2973), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2975), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2977), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2983), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2987), 1, anon_sym_or, - STATE(1860), 1, + STATE(1870), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2410), 1, aux_sym__collection_elements_repeat1, - STATE(2763), 1, + STATE(2702), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101286] = 5, - ACTIONS(3009), 1, + [100793] = 13, + ACTIONS(2971), 1, + anon_sym_COMMA, + ACTIONS(2973), 1, + anon_sym_as, + ACTIONS(2975), 1, + anon_sym_if, + ACTIONS(2977), 1, + anon_sym_COLON, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(2983), 1, + anon_sym_RBRACE, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2987), 1, anon_sym_or, - ACTIONS(3021), 1, - anon_sym_as, + STATE(1870), 1, + sym_for_in_clause, + STATE(2410), 1, + aux_sym__collection_elements_repeat1, + STATE(2707), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + [100834] = 13, + ACTIONS(2971), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [101311] = 6, - ACTIONS(3005), 1, + ACTIONS(2973), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2975), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2977), 1, + anon_sym_COLON, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(2983), 1, + anon_sym_RBRACE, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2987), 1, anon_sym_or, + STATE(1870), 1, + sym_for_in_clause, + STATE(2410), 1, + aux_sym__collection_elements_repeat1, + STATE(2719), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [101338] = 13, - ACTIONS(2985), 1, + [100875] = 13, + ACTIONS(2971), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2973), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2975), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2977), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2983), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2987), 1, anon_sym_or, - STATE(1860), 1, + STATE(1870), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2410), 1, aux_sym__collection_elements_repeat1, - STATE(2788), 1, + STATE(2711), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101379] = 2, - ACTIONS(3), 2, + [100916] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2096), 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, - anon_sym_and, - anon_sym_or, - [101398] = 6, - ACTIONS(3005), 1, + ACTIONS(3012), 1, + anon_sym_LBRACE, + ACTIONS(3016), 1, + anon_sym_BSLASH, + ACTIONS(3018), 1, + sym_string_end, + STATE(1821), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3014), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1678), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [100946] = 6, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2959), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2967), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 8, - sym__newline, - anon_sym_SEMI, + ACTIONS(2999), 7, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_PIPE, - [101425] = 13, - ACTIONS(2985), 1, + [100972] = 12, + ACTIONS(3020), 1, + anon_sym_RPAREN, + ACTIONS(3022), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(2997), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(3035), 1, anon_sym_or, - STATE(1860), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2322), 1, aux_sym__collection_elements_repeat1, - STATE(2789), 1, + STATE(2741), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101466] = 12, - ACTIONS(3028), 1, - anon_sym_RPAREN, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3032), 1, + [101010] = 12, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2959), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2967), 1, anon_sym_or, - STATE(1893), 1, + ACTIONS(2983), 1, + anon_sym_RBRACK, + ACTIONS(3037), 1, + anon_sym_COMMA, + STATE(1871), 1, sym_for_in_clause, - STATE(2318), 1, - aux_sym_argument_list_repeat1, - STATE(2766), 1, + STATE(2458), 1, + aux_sym__collection_elements_repeat1, + STATE(2731), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101504] = 8, + [101048] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3050), 1, + ACTIONS(3039), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1684), 3, + STATE(1671), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101534] = 8, + [101078] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3052), 1, + ACTIONS(3041), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1673), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101564] = 12, - ACTIONS(3032), 1, + [101108] = 12, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3054), 1, + ACTIONS(3043), 1, anon_sym_RPAREN, - ACTIONS(3056), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2322), 1, aux_sym__collection_elements_repeat1, - STATE(2749), 1, + STATE(2598), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101602] = 12, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3036), 1, - anon_sym_async, - ACTIONS(3038), 1, - anon_sym_for, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, - ACTIONS(3058), 1, - anon_sym_RPAREN, - ACTIONS(3060), 1, - anon_sym_COMMA, - STATE(1893), 1, - sym_for_in_clause, - STATE(2288), 1, - aux_sym_argument_list_repeat1, - STATE(2749), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101640] = 8, + [101146] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3047), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3053), 1, anon_sym_BSLASH, - ACTIONS(3062), 1, + ACTIONS(3056), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1673), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101670] = 8, + [101176] = 12, + ACTIONS(3025), 1, + anon_sym_as, + ACTIONS(3027), 1, + anon_sym_if, + ACTIONS(3029), 1, + anon_sym_async, + ACTIONS(3031), 1, + anon_sym_for, + ACTIONS(3033), 1, + anon_sym_and, + ACTIONS(3035), 1, + anon_sym_or, + ACTIONS(3058), 1, + anon_sym_RPAREN, + ACTIONS(3060), 1, + anon_sym_COMMA, + STATE(1833), 1, + sym_for_in_clause, + STATE(2325), 1, + aux_sym_argument_list_repeat1, + STATE(2598), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101214] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3064), 1, + ACTIONS(3062), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1687), 3, + STATE(1673), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101700] = 9, - ACTIONS(3005), 1, + [101244] = 6, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2959), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2967), 1, anon_sym_or, - ACTIONS(3068), 1, - anon_sym_COMMA, - STATE(2200), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3066), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2971), 3, + ACTIONS(2989), 7, anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_PIPE, - [101732] = 8, - ACTIONS(3), 1, + [101270] = 12, + ACTIONS(3025), 1, + anon_sym_as, + ACTIONS(3027), 1, + anon_sym_if, + ACTIONS(3029), 1, + anon_sym_async, + ACTIONS(3031), 1, + anon_sym_for, + ACTIONS(3033), 1, + anon_sym_and, + ACTIONS(3035), 1, + anon_sym_or, + ACTIONS(3064), 1, + anon_sym_RPAREN, + ACTIONS(3066), 1, + anon_sym_COMMA, + STATE(1833), 1, + sym_for_in_clause, + STATE(2403), 1, + aux_sym_argument_list_repeat1, + STATE(2721), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_BSLASH, - ACTIONS(3070), 1, - sym_string_end, - STATE(1797), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3046), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1691), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101762] = 8, + [101308] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3072), 1, + ACTIONS(3068), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1673), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101792] = 12, - ACTIONS(3032), 1, + [101338] = 12, + ACTIONS(3020), 1, + anon_sym_RPAREN, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3056), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3074), 1, - anon_sym_RPAREN, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2322), 1, aux_sym__collection_elements_repeat1, - STATE(2635), 1, + STATE(2741), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101830] = 12, - ACTIONS(3032), 1, + [101376] = 12, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3074), 1, + ACTIONS(3070), 1, anon_sym_RPAREN, - ACTIONS(3076), 1, + ACTIONS(3072), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - STATE(2635), 1, + STATE(2255), 1, + aux_sym_argument_list_repeat1, + STATE(2741), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101868] = 12, - ACTIONS(3032), 1, + [101414] = 9, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2993), 1, anon_sym_if, - ACTIONS(3036), 1, - anon_sym_async, - ACTIONS(3038), 1, - anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2997), 1, anon_sym_or, - ACTIONS(3079), 1, - anon_sym_RPAREN, - ACTIONS(3081), 1, + ACTIONS(3076), 1, anon_sym_COMMA, - STATE(1893), 1, - sym_for_in_clause, - STATE(2273), 1, - aux_sym_argument_list_repeat1, - STATE(2635), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101906] = 3, - ACTIONS(2110), 1, - anon_sym_as, + STATE(2155), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 10, + ACTIONS(3074), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2955), 3, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [101926] = 8, + [101446] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3083), 1, + ACTIONS(3078), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1697), 3, + STATE(1683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101956] = 8, + [101476] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3085), 1, + ACTIONS(3080), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1673), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101986] = 12, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3036), 1, - anon_sym_async, - ACTIONS(3038), 1, - anon_sym_for, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3087), 1, - anon_sym_RPAREN, - STATE(1893), 1, - sym_for_in_clause, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - STATE(2766), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102024] = 12, - ACTIONS(3032), 1, + [101506] = 12, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3089), 1, + ACTIONS(3082), 1, anon_sym_RPAREN, - ACTIONS(3091), 1, + ACTIONS(3084), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2396), 1, + STATE(2309), 1, aux_sym_argument_list_repeat1, - STATE(2644), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102062] = 12, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3036), 1, - anon_sym_async, - ACTIONS(3038), 1, - anon_sym_for, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3093), 1, - anon_sym_RPAREN, - STATE(1893), 1, - sym_for_in_clause, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - STATE(2644), 1, + STATE(2762), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102100] = 8, + [101544] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3095), 1, + ACTIONS(3086), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1702), 3, + STATE(1686), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102130] = 8, + [101574] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3097), 1, + ACTIONS(3088), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1673), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102160] = 12, - ACTIONS(3032), 1, + [101604] = 12, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3056), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3099), 1, + ACTIONS(3090), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2322), 1, aux_sym__collection_elements_repeat1, - STATE(2687), 1, + STATE(2700), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102198] = 12, - ACTIONS(3032), 1, + [101642] = 12, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3101), 1, + ACTIONS(3092), 1, anon_sym_RPAREN, - ACTIONS(3103), 1, + ACTIONS(3094), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2362), 1, + STATE(2355), 1, aux_sym_argument_list_repeat1, - STATE(2687), 1, + STATE(2700), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102236] = 3, - ACTIONS(3105), 1, + [101680] = 3, + ACTIONS(2094), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 10, + ACTIONS(2080), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -112969,394 +112236,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102256] = 3, - ACTIONS(3107), 1, - anon_sym_as, - ACTIONS(3), 2, + [101700] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3017), 10, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [102276] = 8, + ACTIONS(3012), 1, + anon_sym_LBRACE, + ACTIONS(3016), 1, + anon_sym_BSLASH, + ACTIONS(3096), 1, + sym_string_end, + STATE(1821), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3014), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1691), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [101730] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3109), 1, + ACTIONS(3098), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1673), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102306] = 12, - ACTIONS(3032), 1, + [101760] = 12, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3056), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3111), 1, + ACTIONS(3100), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2322), 1, aux_sym__collection_elements_repeat1, - STATE(2668), 1, + STATE(2636), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102344] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3113), 1, - anon_sym_LBRACE, - ACTIONS(3119), 1, - anon_sym_BSLASH, - ACTIONS(3122), 1, - sym_string_end, - STATE(1797), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3116), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1709), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102374] = 12, - ACTIONS(3032), 1, + [101798] = 12, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3124), 1, + ACTIONS(3102), 1, anon_sym_RPAREN, - ACTIONS(3126), 1, + ACTIONS(3104), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2391), 1, + STATE(2378), 1, aux_sym_argument_list_repeat1, - STATE(2668), 1, + STATE(2636), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102412] = 8, + [101836] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3128), 1, + ACTIONS(3106), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1712), 3, + STATE(1695), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102442] = 8, + [101866] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3130), 1, + ACTIONS(3108), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1673), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102472] = 12, - ACTIONS(3032), 1, + [101896] = 12, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3056), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3132), 1, + ACTIONS(3110), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2322), 1, aux_sym__collection_elements_repeat1, - STATE(2664), 1, + STATE(2697), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102510] = 12, - ACTIONS(3032), 1, + [101934] = 3, + ACTIONS(3112), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3010), 10, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3036), 1, + anon_sym_COLON, anon_sym_async, - ACTIONS(3038), 1, anon_sym_for, - ACTIONS(3040), 1, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3134), 1, + [101954] = 12, + ACTIONS(3025), 1, + anon_sym_as, + ACTIONS(3027), 1, + anon_sym_if, + ACTIONS(3029), 1, + anon_sym_async, + ACTIONS(3031), 1, + anon_sym_for, + ACTIONS(3033), 1, + anon_sym_and, + ACTIONS(3035), 1, + anon_sym_or, + ACTIONS(3114), 1, anon_sym_RPAREN, - ACTIONS(3136), 1, + ACTIONS(3116), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2416), 1, + STATE(2399), 1, aux_sym_argument_list_repeat1, - STATE(2664), 1, + STATE(2697), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101992] = 12, + ACTIONS(3025), 1, + anon_sym_as, + ACTIONS(3027), 1, + anon_sym_if, + ACTIONS(3029), 1, + anon_sym_async, + ACTIONS(3031), 1, + anon_sym_for, + ACTIONS(3033), 1, + anon_sym_and, + ACTIONS(3035), 1, + anon_sym_or, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3118), 1, + anon_sym_RPAREN, + STATE(1833), 1, + sym_for_in_clause, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, + STATE(2721), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102548] = 8, + [102030] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3138), 1, + ACTIONS(3120), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1716), 3, + STATE(1701), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102578] = 8, + [102060] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3140), 1, + ACTIONS(3122), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1673), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102608] = 12, - ACTIONS(3032), 1, + [102090] = 12, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3056), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3142), 1, + ACTIONS(3124), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2322), 1, aux_sym__collection_elements_repeat1, - STATE(2628), 1, + STATE(2610), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102646] = 12, - ACTIONS(3032), 1, + [102128] = 12, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3144), 1, + ACTIONS(3126), 1, anon_sym_RPAREN, - ACTIONS(3146), 1, + ACTIONS(3128), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1833), 1, sym_for_in_clause, - STATE(2443), 1, + STATE(2422), 1, aux_sym_argument_list_repeat1, - STATE(2628), 1, + STATE(2610), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102684] = 8, + [102166] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3148), 1, + ACTIONS(3130), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1720), 3, + STATE(1705), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102714] = 8, + [102196] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3150), 1, + ACTIONS(3132), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1673), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102744] = 12, - ACTIONS(2973), 1, + [102226] = 12, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2983), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3037), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1871), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2458), 1, aux_sym__collection_elements_repeat1, - STATE(2759), 1, + STATE(2733), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102782] = 6, - ACTIONS(2973), 1, + [102264] = 6, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 7, + ACTIONS(3001), 7, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, @@ -113364,89 +112657,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [102808] = 12, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2975), 1, - anon_sym_if, - ACTIONS(2977), 1, - anon_sym_async, - ACTIONS(2979), 1, - anon_sym_for, - ACTIONS(2981), 1, + [102290] = 5, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, - ACTIONS(2997), 1, - anon_sym_RBRACK, - ACTIONS(3152), 1, - anon_sym_COMMA, - STATE(1846), 1, - sym_for_in_clause, - STATE(2460), 1, - aux_sym__collection_elements_repeat1, - STATE(2762), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102846] = 6, - ACTIONS(2973), 1, + ACTIONS(3134), 1, anon_sym_as, - ACTIONS(2975), 1, - anon_sym_if, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 7, + ACTIONS(3003), 8, anon_sym_DOT, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [102872] = 12, - ACTIONS(2973), 1, + [102314] = 12, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2983), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3037), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1871), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2458), 1, aux_sym__collection_elements_repeat1, - STATE(2776), 1, + STATE(2767), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102910] = 5, - ACTIONS(2981), 1, + [102352] = 5, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, - ACTIONS(3154), 1, + ACTIONS(3137), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 8, + ACTIONS(3008), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -113455,67 +112721,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [102934] = 12, - ACTIONS(2973), 1, + [102376] = 3, + ACTIONS(3139), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2969), 10, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2977), 1, + anon_sym_COLON, anon_sym_async, - ACTIONS(2979), 1, anon_sym_for, - ACTIONS(2981), 1, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, - ACTIONS(2983), 1, anon_sym_or, - ACTIONS(2997), 1, - anon_sym_RBRACK, - ACTIONS(3152), 1, - anon_sym_COMMA, - STATE(1846), 1, - sym_for_in_clause, - STATE(2460), 1, - aux_sym__collection_elements_repeat1, - STATE(2689), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102972] = 12, - ACTIONS(2973), 1, + [102396] = 12, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2983), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3037), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1871), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2458), 1, aux_sym__collection_elements_repeat1, - STATE(2695), 1, + STATE(2771), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103010] = 4, - ACTIONS(2981), 1, + [102434] = 4, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(3107), 1, + ACTIONS(3139), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(2969), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -113525,274 +112782,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_PIPE, anon_sym_or, - [103032] = 12, - ACTIONS(2973), 1, + [102456] = 12, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2983), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3037), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1871), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2458), 1, aux_sym__collection_elements_repeat1, - STATE(2666), 1, + STATE(2788), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103070] = 12, - ACTIONS(2973), 1, + [102494] = 12, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2983), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3037), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1871), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2458), 1, aux_sym__collection_elements_repeat1, - STATE(2629), 1, + STATE(2669), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103108] = 12, - ACTIONS(2973), 1, + [102532] = 12, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2983), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3037), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1871), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2458), 1, aux_sym__collection_elements_repeat1, - STATE(2722), 1, + STATE(2705), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103146] = 6, - ACTIONS(2973), 1, + [102570] = 12, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_if, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3003), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2961), 1, anon_sym_async, + ACTIONS(2963), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [103172] = 5, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, - ACTIONS(3157), 1, - anon_sym_as, + ACTIONS(2983), 1, + anon_sym_RBRACK, + ACTIONS(3037), 1, + anon_sym_COMMA, + STATE(1871), 1, + sym_for_in_clause, + STATE(2458), 1, + aux_sym__collection_elements_repeat1, + STATE(2611), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 8, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [103196] = 8, + [102608] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3159), 1, + ACTIONS(3141), 1, sym_string_end, - STATE(1797), 2, + STATE(1821), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1707), 3, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [103226] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3013), 10, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + [102638] = 12, + ACTIONS(3025), 1, anon_sym_as, + ACTIONS(3027), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3029), 1, + anon_sym_async, + ACTIONS(3031), 1, + anon_sym_for, + ACTIONS(3033), 1, anon_sym_and, + ACTIONS(3035), 1, anon_sym_or, - [103243] = 8, - ACTIONS(3161), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3163), 1, + ACTIONS(3143), 1, + anon_sym_RPAREN, + STATE(1833), 1, + sym_for_in_clause, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, + STATE(2762), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102676] = 6, + ACTIONS(3145), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3147), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3151), 1, anon_sym_or, - STATE(1979), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3167), 4, + ACTIONS(2999), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103272] = 2, + anon_sym_PIPE, + [102701] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 10, + ACTIONS(2080), 10, 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, - [103289] = 5, - ACTIONS(3173), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, + [102718] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 7, + ACTIONS(3010), 10, 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, - [103312] = 6, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, anon_sym_and, - ACTIONS(3011), 1, anon_sym_or, + [102735] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3010), 10, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103337] = 6, - ACTIONS(3180), 1, + anon_sym_and, + anon_sym_or, + [102752] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 6, + ACTIONS(3001), 6, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103362] = 4, - ACTIONS(3184), 1, + [102777] = 5, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, + ACTIONS(3161), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 8, + ACTIONS(3003), 7, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103383] = 2, + [102800] = 4, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 10, + ACTIONS(3008), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113801,15 +113052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103400] = 3, - ACTIONS(3184), 1, - anon_sym_and, + [102821] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(2969), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113818,678 +113065,685 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [103419] = 4, - ACTIONS(3176), 1, anon_sym_and, - ACTIONS(3178), 1, anon_sym_or, + [102838] = 3, + ACTIONS(3157), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 8, + ACTIONS(2969), 9, 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, - [103440] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, anon_sym_or, - ACTIONS(3188), 1, + [102857] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3155), 1, anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, + ACTIONS(2999), 6, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103465] = 2, + [102882] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 10, + ACTIONS(2989), 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, + [102907] = 6, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, anon_sym_and, + ACTIONS(2997), 1, anon_sym_or, - [103482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 10, + ACTIONS(2955), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + [102932] = 6, + ACTIONS(3145), 1, + anon_sym_as, + ACTIONS(3147), 1, + anon_sym_if, + ACTIONS(3149), 1, anon_sym_and, + ACTIONS(3151), 1, anon_sym_or, - [103499] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 10, + ACTIONS(2989), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + [102957] = 6, + ACTIONS(3145), 1, + anon_sym_as, + ACTIONS(3147), 1, + anon_sym_if, + ACTIONS(3149), 1, anon_sym_and, + ACTIONS(3151), 1, anon_sym_or, - [103516] = 3, - ACTIONS(3176), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(2955), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [103535] = 6, - ACTIONS(3180), 1, + [102982] = 8, + ACTIONS(3164), 1, + anon_sym_COMMA, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3174), 1, anon_sym_or, + STATE(1984), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 6, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3170), 4, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, - anon_sym_PIPE, - [103560] = 5, - ACTIONS(3184), 1, + anon_sym_RBRACE, + sym_type_conversion, + [103011] = 8, + ACTIONS(3164), 1, + anon_sym_COMMA, + ACTIONS(3166), 1, + anon_sym_as, + ACTIONS(3168), 1, + anon_sym_if, + ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3174), 1, anon_sym_or, - ACTIONS(3192), 1, - anon_sym_as, + STATE(1984), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(3176), 4, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, - anon_sym_PIPE, - [103583] = 6, - ACTIONS(3180), 1, + anon_sym_RBRACE, + sym_type_conversion, + [103040] = 6, + ACTIONS(3145), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3147), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 6, + ACTIONS(3001), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103608] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + [103065] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 6, + ACTIONS(2080), 10, 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, - [103633] = 6, - ACTIONS(3176), 1, anon_sym_and, - ACTIONS(3178), 1, anon_sym_or, - ACTIONS(3188), 1, + [103082] = 5, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, + anon_sym_or, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 6, + ACTIONS(3003), 7, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103658] = 8, - ACTIONS(3161), 1, - anon_sym_COMMA, - ACTIONS(3163), 1, - anon_sym_as, - ACTIONS(3165), 1, - anon_sym_if, - ACTIONS(3169), 1, + [103105] = 4, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3151), 1, anon_sym_or, - STATE(1979), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103687] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + ACTIONS(3008), 8, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3190), 1, anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [103126] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 6, + ACTIONS(2969), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103712] = 4, - ACTIONS(3199), 1, - anon_sym_DOT, - STATE(1758), 1, - aux_sym_dotted_name_repeat1, + anon_sym_and, + anon_sym_or, + [103143] = 3, + ACTIONS(3149), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(2969), 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, - [103732] = 3, - ACTIONS(3202), 1, + anon_sym_or, + [103162] = 6, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, + anon_sym_if, + ACTIONS(3185), 1, anon_sym_and, + ACTIONS(3187), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 8, + ACTIONS(2989), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_or, - [103750] = 2, + [103186] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 9, + ACTIONS(2080), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [103766] = 3, - ACTIONS(3105), 1, - anon_sym_as, + [103202] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 8, + ACTIONS(3010), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [103784] = 4, - ACTIONS(3206), 1, - anon_sym_DOT, - STATE(1758), 1, - aux_sym_dotted_name_repeat1, + sym_type_conversion, + [103218] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(3010), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [103804] = 6, - ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3208), 1, + anon_sym_or, + [103234] = 6, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 5, + ACTIONS(3001), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103828] = 6, - ACTIONS(3202), 1, + [103258] = 5, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3187), 1, anon_sym_or, + ACTIONS(3189), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 5, + ACTIONS(3003), 6, anon_sym_DOT, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103852] = 6, - ACTIONS(3163), 1, - anon_sym_as, - ACTIONS(3165), 1, - anon_sym_if, - ACTIONS(3169), 1, + [103280] = 4, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3187), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 5, + ACTIONS(3008), 7, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103876] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [103300] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 5, + ACTIONS(2969), 9, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103900] = 6, - ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, anon_sym_or, + [103316] = 3, + ACTIONS(3185), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, + ACTIONS(2969), 8, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103924] = 2, + anon_sym_or, + [103334] = 5, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3137), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 9, - anon_sym_DOT, + ACTIONS(3008), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103940] = 6, - ACTIONS(3163), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [103356] = 3, + ACTIONS(3139), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2969), 8, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3169), 1, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(3171), 1, anon_sym_or, + [103374] = 4, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(3139), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3214), 5, + ACTIONS(2969), 7, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [103964] = 9, - ACTIONS(3005), 1, + anon_sym_or, + [103394] = 6, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3218), 1, - anon_sym_from, - ACTIONS(3220), 1, - anon_sym_COMMA, - STATE(2017), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3216), 2, - sym__newline, - anon_sym_SEMI, - [103994] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3013), 9, + ACTIONS(2999), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [104010] = 6, - ACTIONS(3163), 1, + [103418] = 3, + ACTIONS(3112), 1, anon_sym_as, - ACTIONS(3165), 1, - anon_sym_if, - ACTIONS(3169), 1, - anon_sym_and, - ACTIONS(3171), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 5, + ACTIONS(3010), 8, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [104034] = 2, + anon_sym_and, + anon_sym_or, + [103436] = 4, + ACTIONS(3194), 1, + anon_sym_DOT, + STATE(1774), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, - anon_sym_DOT, + ACTIONS(3192), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, + [103456] = 6, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, + anon_sym_if, + ACTIONS(3185), 1, anon_sym_and, + ACTIONS(3187), 1, anon_sym_or, - [104050] = 5, - ACTIONS(3206), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2955), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [103480] = 5, + ACTIONS(3194), 1, anon_sym_DOT, - ACTIONS(3224), 1, + ACTIONS(3196), 1, anon_sym_EQ, - STATE(1762), 1, + STATE(1774), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 6, + ACTIONS(3192), 6, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [104072] = 6, - ACTIONS(2987), 1, + [103502] = 6, + ACTIONS(2973), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2975), 1, anon_sym_if, - ACTIONS(2999), 1, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2987), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 5, + ACTIONS(2999), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104096] = 6, - ACTIONS(2987), 1, + [103526] = 9, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2993), 1, anon_sym_if, - ACTIONS(2999), 1, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2997), 1, anon_sym_or, + ACTIONS(3200), 1, + anon_sym_from, + ACTIONS(3202), 1, + anon_sym_COMMA, + STATE(2033), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [104120] = 5, - ACTIONS(3202), 1, + ACTIONS(3198), 2, + sym__newline, + anon_sym_SEMI, + [103556] = 6, + ACTIONS(3166), 1, + anon_sym_as, + ACTIONS(3168), 1, + anon_sym_if, + ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3174), 1, anon_sym_or, - ACTIONS(3226), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 6, - anon_sym_DOT, + ACTIONS(3204), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [104142] = 5, - ACTIONS(2999), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103580] = 6, + ACTIONS(2973), 1, + anon_sym_as, + ACTIONS(2975), 1, + anon_sym_if, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2987), 1, anon_sym_or, - ACTIONS(3229), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 6, + ACTIONS(3001), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104164] = 4, - ACTIONS(3169), 1, - anon_sym_and, - ACTIONS(3171), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3015), 7, - anon_sym_COMMA, + [103604] = 6, + ACTIONS(3153), 1, anon_sym_as, + ACTIONS(3155), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [104184] = 4, - ACTIONS(3202), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 7, + ACTIONS(2955), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [104204] = 6, - ACTIONS(3180), 1, + [103628] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3174), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, - anon_sym_DOT, + ACTIONS(3206), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [104228] = 5, - ACTIONS(2999), 1, - anon_sym_and, - ACTIONS(3001), 1, - anon_sym_or, - ACTIONS(3157), 1, - anon_sym_as, + anon_sym_RBRACE, + sym_type_conversion, + [103652] = 4, + ACTIONS(3210), 1, + anon_sym_DOT, + STATE(1765), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 6, + ACTIONS(3208), 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, - [104250] = 2, + anon_sym_PIPE, + [103672] = 6, + ACTIONS(3166), 1, + anon_sym_as, + ACTIONS(3168), 1, + anon_sym_if, + ACTIONS(3172), 1, + anon_sym_and, + ACTIONS(3174), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(3001), 5, 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, - [104266] = 3, - ACTIONS(3107), 1, + [103696] = 3, + ACTIONS(2094), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 8, + ACTIONS(2080), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -114498,79 +113752,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [104284] = 4, - ACTIONS(2999), 1, + [103714] = 5, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3107), 1, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3213), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 7, + ACTIONS(3003), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - anon_sym_or, - [104304] = 3, - ACTIONS(3169), 1, + [103736] = 6, + ACTIONS(3166), 1, + anon_sym_as, + ACTIONS(3168), 1, + anon_sym_if, + ACTIONS(3172), 1, anon_sym_and, + ACTIONS(3174), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 8, + ACTIONS(2999), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_or, sym_type_conversion, - [104322] = 3, - ACTIONS(2110), 1, + [103760] = 6, + ACTIONS(2973), 1, anon_sym_as, + ACTIONS(2975), 1, + anon_sym_if, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 8, + ACTIONS(2989), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, + [103784] = 5, + ACTIONS(3172), 1, anon_sym_and, + ACTIONS(3174), 1, anon_sym_or, - [104340] = 6, - ACTIONS(3163), 1, + ACTIONS(3216), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3003), 6, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3169), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103806] = 4, + ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3174), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 5, + ACTIONS(3008), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103826] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2969), 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, - [104364] = 4, - ACTIONS(3206), 1, + [103842] = 4, + ACTIONS(3194), 1, anon_sym_DOT, - STATE(1762), 1, + STATE(1765), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 7, + ACTIONS(3219), 7, anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, @@ -114578,29 +113868,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [104384] = 6, - ACTIONS(3163), 1, - anon_sym_as, - ACTIONS(3165), 1, - anon_sym_if, - ACTIONS(3169), 1, + [103862] = 3, + ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3171), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + ACTIONS(2969), 8, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_or, sym_type_conversion, - [104408] = 2, + [103880] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 9, + ACTIONS(2080), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -114610,189 +113897,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [104424] = 6, - ACTIONS(2987), 1, + [103896] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(2999), 1, + ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(3174), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 5, + ACTIONS(2989), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [104448] = 5, - ACTIONS(3169), 1, + sym_type_conversion, + [103920] = 5, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3234), 1, + ACTIONS(3137), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 6, + ACTIONS(3008), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [104470] = 5, - ACTIONS(3237), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - STATE(1885), 1, - aux_sym_dotted_name_repeat1, + anon_sym_async, + anon_sym_for, + [103941] = 5, + ACTIONS(3025), 1, + anon_sym_as, + ACTIONS(3033), 1, + anon_sym_and, + ACTIONS(3035), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, + ACTIONS(3221), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [103962] = 9, + ACTIONS(3181), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [104491] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3241), 1, + ACTIONS(3223), 1, anon_sym_COMMA, - ACTIONS(3243), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3245), 1, + ACTIONS(3227), 1, anon_sym_RBRACK, - STATE(2276), 1, + STATE(2401), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104520] = 5, - ACTIONS(3032), 1, + [103991] = 6, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(3040), 1, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2997), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, - 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, - [104541] = 6, - ACTIONS(3), 1, + [104014] = 4, + ACTIONS(320), 1, + sym_string_start, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3253), 1, - anon_sym_BSLASH, - ACTIONS(3249), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1800), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3251), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [104564] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3255), 1, - anon_sym_async, - ACTIONS(3257), 1, - anon_sym_def, - ACTIONS(3259), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(829), 2, - sym_function_definition, - sym_class_definition, - STATE(1934), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104589] = 8, - ACTIONS(3005), 1, + STATE(1023), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3229), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3007), 1, anon_sym_if, - ACTIONS(3009), 1, + anon_sym_COLON, + anon_sym_PIPE, + [104033] = 5, + ACTIONS(2957), 1, + anon_sym_as, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2967), 1, anon_sym_or, - ACTIONS(3263), 1, - anon_sym_COMMA, - STATE(2209), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3261), 2, - sym__newline, - anon_sym_SEMI, - [104616] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3270), 1, - anon_sym_BSLASH, - ACTIONS(3265), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1800), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3267), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [104639] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3273), 1, + ACTIONS(3221), 5, anon_sym_COMMA, - ACTIONS(3275), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - STATE(2394), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [104668] = 2, + [104054] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 8, + ACTIONS(3208), 8, anon_sym_import, anon_sym_DOT, anon_sym_LPAREN, @@ -114801,277 +114028,393 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [104683] = 6, - ACTIONS(2987), 1, + [104069] = 3, + ACTIONS(3112), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3010), 7, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2999), 1, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [104086] = 5, + ACTIONS(3025), 1, + anon_sym_as, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(3035), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 4, + ACTIONS(3221), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104706] = 6, - ACTIONS(3032), 1, + [104107] = 3, + ACTIONS(2094), 1, anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 4, + ACTIONS(2080), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [104729] = 8, - ACTIONS(3005), 1, + anon_sym_and, + anon_sym_or, + [104124] = 9, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3281), 1, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3231), 1, anon_sym_COMMA, - STATE(2157), 1, - aux_sym_print_statement_repeat1, + ACTIONS(3233), 1, + anon_sym_RBRACK, + STATE(2425), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 2, - sym__newline, - anon_sym_SEMI, - [104756] = 5, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3040), 1, + [104153] = 5, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, + ACTIONS(3235), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(3003), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104777] = 7, - ACTIONS(1559), 1, - anon_sym_except, - ACTIONS(1563), 1, - anon_sym_except_STAR, - ACTIONS(3283), 1, - anon_sym_finally, - STATE(814), 1, - sym_finally_clause, + [104174] = 5, + ACTIONS(2973), 1, + anon_sym_as, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(588), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(589), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [104802] = 5, - ACTIONS(2987), 1, + ACTIONS(3221), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [104195] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3238), 1, + anon_sym_async, + ACTIONS(3240), 1, + anon_sym_def, + ACTIONS(3242), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(785), 2, + sym_function_definition, + sym_class_definition, + STATE(1983), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [104220] = 9, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, + anon_sym_if, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, + anon_sym_or, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3244), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_RBRACK, + STATE(2431), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104249] = 9, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, + anon_sym_if, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, + anon_sym_or, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3248), 1, + anon_sym_COMMA, + ACTIONS(3250), 1, + anon_sym_RBRACK, + STATE(2436), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104278] = 5, + ACTIONS(2973), 1, anon_sym_as, - ACTIONS(2999), 1, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2987), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(3221), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104823] = 5, - ACTIONS(2973), 1, + [104299] = 5, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(3221), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [104844] = 3, - ACTIONS(3105), 1, + [104320] = 6, + ACTIONS(3025), 1, anon_sym_as, + ACTIONS(3027), 1, + anon_sym_if, + ACTIONS(3033), 1, + anon_sym_and, + ACTIONS(3035), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 7, + ACTIONS(2989), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_and, - anon_sym_or, - [104861] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [104343] = 5, + ACTIONS(3252), 1, + anon_sym_DOT, + ACTIONS(3254), 1, + anon_sym_EQ, + STATE(1859), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3192), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3210), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [104364] = 9, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3285), 1, + ACTIONS(3256), 1, anon_sym_COMMA, - ACTIONS(3287), 1, + ACTIONS(3258), 1, anon_sym_RBRACK, - STATE(2420), 1, + STATE(2358), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104890] = 8, - ACTIONS(3005), 1, + [104393] = 8, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2993), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2997), 1, anon_sym_or, - ACTIONS(3263), 1, + ACTIONS(3202), 1, anon_sym_COMMA, - STATE(2159), 1, + STATE(2033), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 2, + ACTIONS(3176), 2, sym__newline, anon_sym_SEMI, - [104917] = 5, + [104420] = 6, ACTIONS(2973), 1, anon_sym_as, - ACTIONS(2981), 1, + ACTIONS(2975), 1, + anon_sym_if, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(3260), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104938] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + anon_sym_RBRACE, + [104443] = 9, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3291), 1, + ACTIONS(3262), 1, anon_sym_COMMA, - ACTIONS(3293), 1, + ACTIONS(3264), 1, anon_sym_RBRACK, - STATE(2445), 1, + STATE(2467), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104967] = 5, - ACTIONS(3295), 1, - anon_sym_DOT, - ACTIONS(3297), 1, - anon_sym_EQ, - STATE(1866), 1, - aux_sym_dotted_name_repeat1, + [104472] = 8, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_and, + ACTIONS(2997), 1, + anon_sym_or, + ACTIONS(3268), 1, + anon_sym_COMMA, + STATE(2213), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3266), 2, + sym__newline, + anon_sym_SEMI, + [104499] = 5, + ACTIONS(3025), 1, anon_sym_as, - anon_sym_PIPE, - [104988] = 9, - ACTIONS(3202), 1, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3299), 1, - anon_sym_COMMA, - ACTIONS(3301), 1, - anon_sym_RBRACK, - STATE(2451), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105017] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3221), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [104520] = 6, + ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3033), 1, + anon_sym_and, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3303), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2999), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3305), 1, - anon_sym_RBRACK, - STATE(2390), 1, - aux_sym_subscript_repeat1, + anon_sym_async, + anon_sym_for, + [104543] = 5, + ACTIONS(3270), 1, + anon_sym_DOT, + ACTIONS(3272), 1, + anon_sym_EQ, + STATE(1843), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105046] = 3, - ACTIONS(2110), 1, + ACTIONS(3192), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [104564] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3279), 1, + anon_sym_BSLASH, + ACTIONS(3274), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1806), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3276), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [104587] = 3, + ACTIONS(3139), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 7, + ACTIONS(2969), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -115079,7977 +114422,7964 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [105063] = 9, - ACTIONS(3202), 1, + [104604] = 4, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3139), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2969), 6, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3212), 1, + anon_sym_async, + anon_sym_for, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3307), 1, + [104623] = 8, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_and, + ACTIONS(2997), 1, + anon_sym_or, + ACTIONS(3202), 1, anon_sym_COMMA, - ACTIONS(3309), 1, - anon_sym_RBRACK, - STATE(2321), 1, - aux_sym_subscript_repeat1, + STATE(2033), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105092] = 4, - ACTIONS(328), 1, - sym_string_start, + ACTIONS(3282), 2, + sym__newline, + anon_sym_SEMI, + [104650] = 5, + ACTIONS(3284), 1, + anon_sym_DOT, + ACTIONS(3286), 1, + anon_sym_EQ, + STATE(1868), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(994), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 5, + ACTIONS(3192), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [105111] = 7, - ACTIONS(1503), 1, + [104671] = 7, + ACTIONS(1495), 1, anon_sym_except, - ACTIONS(1507), 1, + ACTIONS(1499), 1, anon_sym_except_STAR, - ACTIONS(3313), 1, + ACTIONS(3288), 1, anon_sym_finally, - STATE(755), 1, + STATE(828), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(495), 2, + STATE(499), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(503), 2, + STATE(505), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [105136] = 5, - ACTIONS(2987), 1, + [104696] = 8, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(2999), 1, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2997), 1, anon_sym_or, + ACTIONS(3202), 1, + anon_sym_COMMA, + STATE(2033), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, - anon_sym_COMMA, + ACTIONS(2927), 2, + sym__newline, + anon_sym_SEMI, + [104723] = 8, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [105157] = 7, - ACTIONS(1559), 1, + ACTIONS(2995), 1, + anon_sym_and, + ACTIONS(2997), 1, + anon_sym_or, + ACTIONS(3202), 1, + anon_sym_COMMA, + STATE(2033), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3290), 2, + sym__newline, + anon_sym_SEMI, + [104750] = 7, + ACTIONS(1507), 1, anon_sym_except, - ACTIONS(1563), 1, + ACTIONS(1511), 1, anon_sym_except_STAR, - ACTIONS(3283), 1, + ACTIONS(3292), 1, anon_sym_finally, - STATE(846), 1, + STATE(818), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(607), 2, + STATE(514), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(608), 2, + STATE(515), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [105182] = 8, - ACTIONS(3005), 1, + [104775] = 9, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3068), 1, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3294), 1, anon_sym_COMMA, - STATE(2200), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3066), 2, - sym__newline, - anon_sym_SEMI, - [105209] = 6, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, + ACTIONS(3296), 1, + anon_sym_RBRACK, + STATE(2380), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [105232] = 8, - ACTIONS(3005), 1, + [104804] = 8, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2993), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2997), 1, anon_sym_or, - ACTIONS(3220), 1, + ACTIONS(3268), 1, anon_sym_COMMA, - STATE(2017), 1, + STATE(2137), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3315), 2, + ACTIONS(3298), 2, sym__newline, anon_sym_SEMI, - [105259] = 8, - ACTIONS(3005), 1, + [104831] = 9, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3220), 1, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3300), 1, anon_sym_COMMA, - STATE(2017), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3302), 1, + anon_sym_RBRACK, + STATE(2312), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 2, - sym__newline, - anon_sym_SEMI, - [105286] = 8, - ACTIONS(3005), 1, + [104860] = 8, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2993), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2997), 1, anon_sym_or, - ACTIONS(3220), 1, + ACTIONS(3306), 1, anon_sym_COMMA, - STATE(2017), 1, - aux_sym_assert_statement_repeat1, + STATE(2206), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 2, + ACTIONS(3304), 2, sym__newline, anon_sym_SEMI, - [105313] = 7, - ACTIONS(1503), 1, - anon_sym_except, + [104887] = 7, ACTIONS(1507), 1, + anon_sym_except, + ACTIONS(1511), 1, anon_sym_except_STAR, - ACTIONS(3313), 1, + ACTIONS(3292), 1, anon_sym_finally, - STATE(792), 1, + STATE(781), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(572), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(573), 2, + STATE(547), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [105338] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3319), 1, - anon_sym_COMMA, - ACTIONS(3321), 1, - anon_sym_RBRACK, - STATE(2447), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105367] = 5, - ACTIONS(2973), 1, + STATE(595), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [104912] = 5, + ACTIONS(2957), 1, anon_sym_as, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(3221), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [105388] = 5, - ACTIONS(2987), 1, + [104933] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3312), 1, + anon_sym_BSLASH, + ACTIONS(3308), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1806), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3310), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [104956] = 5, + ACTIONS(2973), 1, anon_sym_as, - ACTIONS(2999), 1, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2987), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(3221), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [105409] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [104977] = 9, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3323), 1, + ACTIONS(3314), 1, anon_sym_COMMA, - ACTIONS(3325), 1, + ACTIONS(3316), 1, anon_sym_RBRACK, - STATE(2365), 1, + STATE(2258), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105438] = 8, - ACTIONS(3005), 1, + [105006] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3318), 1, + anon_sym_async, + ACTIONS(3320), 1, + anon_sym_def, + ACTIONS(3322), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(762), 2, + sym_function_definition, + sym_class_definition, + STATE(1983), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [105031] = 8, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2993), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2997), 1, anon_sym_or, - ACTIONS(3220), 1, + ACTIONS(3076), 1, anon_sym_COMMA, - STATE(2017), 1, + STATE(2155), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, + ACTIONS(3074), 2, sym__newline, anon_sym_SEMI, - [105465] = 6, - ACTIONS(3032), 1, + [105058] = 9, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3040), 1, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3187), 1, anon_sym_or, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3324), 1, + anon_sym_COMMA, + ACTIONS(3326), 1, + anon_sym_RBRACK, + STATE(2334), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [105488] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3327), 1, - anon_sym_async, - ACTIONS(3329), 1, - anon_sym_def, - ACTIONS(3331), 1, - anon_sym_class, + [105087] = 7, + ACTIONS(1495), 1, + anon_sym_except, + ACTIONS(1499), 1, + anon_sym_except_STAR, + ACTIONS(3288), 1, + anon_sym_finally, + STATE(819), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(801), 2, - sym_function_definition, - sym_class_definition, - STATE(1934), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [105513] = 5, - ACTIONS(3040), 1, + STATE(516), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(517), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [105112] = 6, + ACTIONS(3025), 1, + anon_sym_as, + ACTIONS(3027), 1, + anon_sym_if, + ACTIONS(3033), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3333), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 5, + ACTIONS(3001), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - [105534] = 5, - ACTIONS(3336), 1, + [105135] = 6, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(3328), 1, + anon_sym_if, + ACTIONS(3330), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1836), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105157] = 4, + ACTIONS(3332), 1, anon_sym_DOT, - ACTIONS(3338), 1, - anon_sym_EQ, - STATE(1884), 1, + STATE(1830), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, + ACTIONS(3208), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [105555] = 5, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, + [105175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3335), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3229), 5, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [105576] = 5, - ACTIONS(3040), 1, + anon_sym_COLON, + anon_sym_PIPE, + [105191] = 8, + ACTIONS(3145), 1, + anon_sym_as, + ACTIONS(3147), 1, + anon_sym_if, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3151), 1, anon_sym_or, - ACTIONS(3157), 1, - anon_sym_as, + ACTIONS(3176), 1, + anon_sym_RPAREN, + ACTIONS(3337), 1, + anon_sym_COMMA, + STATE(2440), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, + [105217] = 6, + ACTIONS(3029), 1, anon_sym_async, + ACTIONS(3031), 1, anon_sym_for, - [105597] = 3, - ACTIONS(3107), 1, - anon_sym_as, + ACTIONS(3339), 1, + anon_sym_RPAREN, + ACTIONS(3341), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 7, - anon_sym_RPAREN, + STATE(1856), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105239] = 4, + ACTIONS(3270), 1, + anon_sym_DOT, + STATE(1843), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3192), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [105257] = 5, + ACTIONS(2973), 1, + anon_sym_as, + ACTIONS(2985), 1, anon_sym_and, + ACTIONS(2987), 1, anon_sym_or, - [105614] = 4, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3107), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3343), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_or, - [105633] = 6, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, + anon_sym_RBRACE, + [105277] = 6, + ACTIONS(3345), 1, anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, + ACTIONS(3348), 1, + anon_sym_async, + ACTIONS(3351), 1, + anon_sym_for, + ACTIONS(3354), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + STATE(1836), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105299] = 4, + ACTIONS(763), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1126), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3229), 4, anon_sym_COMMA, - [105656] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3342), 1, anon_sym_RBRACK, - STATE(2458), 1, - aux_sym_subscript_repeat1, + anon_sym_PIPE, + [105317] = 5, + ACTIONS(2957), 1, + anon_sym_as, + ACTIONS(2965), 1, + anon_sym_and, + ACTIONS(2967), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105685] = 6, - ACTIONS(3036), 1, + ACTIONS(3343), 4, + anon_sym_if, anon_sym_async, - ACTIONS(3038), 1, anon_sym_for, - ACTIONS(3344), 1, - anon_sym_RPAREN, - ACTIONS(3346), 1, - anon_sym_if, + anon_sym_RBRACK, + [105337] = 4, + ACTIONS(3356), 1, + anon_sym_DOT, + STATE(1839), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1887), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105707] = 6, - ACTIONS(2977), 1, - anon_sym_async, + ACTIONS(3208), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [105355] = 8, ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(3348), 1, - anon_sym_if, - ACTIONS(3350), 1, + ACTIONS(3359), 1, + anon_sym_COMMA, + ACTIONS(3361), 1, + anon_sym_RBRACE, + STATE(1870), 1, + sym_for_in_clause, + STATE(2298), 1, + aux_sym_dictionary_repeat1, + STATE(2737), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105381] = 6, + ACTIONS(3354), 1, anon_sym_RBRACK, + ACTIONS(3363), 1, + anon_sym_if, + ACTIONS(3366), 1, + anon_sym_async, + ACTIONS(3369), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 3, + STATE(1841), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105729] = 8, - ACTIONS(3195), 1, - anon_sym_RBRACK, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3352), 1, + [105403] = 8, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(3372), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3374), 1, + anon_sym_RBRACE, + STATE(1870), 1, + sym_for_in_clause, + STATE(2349), 1, + aux_sym_dictionary_repeat1, + STATE(2709), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105755] = 8, - ACTIONS(3180), 1, + [105429] = 4, + ACTIONS(3270), 1, + anon_sym_DOT, + STATE(1839), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3219), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [105447] = 6, + ACTIONS(2961), 1, + anon_sym_async, + ACTIONS(2963), 1, + anon_sym_for, + ACTIONS(3330), 1, + anon_sym_RBRACK, + ACTIONS(3376), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3354), 1, - anon_sym_COMMA, - ACTIONS(3356), 1, - anon_sym_COLON, - STATE(2298), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105781] = 8, - ACTIONS(3180), 1, + STATE(1841), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105469] = 4, + ACTIONS(785), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(986), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3229), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, + anon_sym_PIPE, + [105487] = 8, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3358), 1, + ACTIONS(3378), 1, anon_sym_COMMA, - ACTIONS(3360), 1, + ACTIONS(3380), 1, anon_sym_COLON, - STATE(2268), 1, + STATE(2317), 1, aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105807] = 8, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3354), 1, - anon_sym_COMMA, - ACTIONS(3362), 1, - anon_sym_COLON, - STATE(2298), 1, - aux_sym_assert_statement_repeat1, + [105513] = 4, + ACTIONS(3252), 1, + anon_sym_DOT, + STATE(1859), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105833] = 8, - ACTIONS(2993), 1, + ACTIONS(3192), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [105531] = 8, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(3364), 1, + ACTIONS(3382), 1, anon_sym_COMMA, - ACTIONS(3366), 1, + ACTIONS(3384), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1870), 1, sym_for_in_clause, - STATE(2384), 1, + STATE(2270), 1, aux_sym_dictionary_repeat1, - STATE(2753), 1, + STATE(2651), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105859] = 8, - ACTIONS(2993), 1, + [105557] = 8, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(3368), 1, + ACTIONS(3386), 1, anon_sym_COMMA, - ACTIONS(3370), 1, + ACTIONS(3388), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1870), 1, sym_for_in_clause, - STATE(2263), 1, + STATE(2372), 1, aux_sym_dictionary_repeat1, - STATE(2748), 1, + STATE(2722), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105885] = 4, - ACTIONS(3372), 1, + [105583] = 7, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, + anon_sym_if, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, + anon_sym_or, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3390), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [105607] = 4, + ACTIONS(3284), 1, anon_sym_DOT, - STATE(1853), 1, + STATE(1868), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 5, + ACTIONS(3192), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105903] = 6, - ACTIONS(2993), 1, + [105625] = 4, + ACTIONS(692), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(967), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3229), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [105643] = 8, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3392), 1, + anon_sym_COMMA, + ACTIONS(3394), 1, + anon_sym_COLON, + STATE(2345), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105669] = 8, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(3344), 1, + ACTIONS(3396), 1, + anon_sym_COMMA, + ACTIONS(3398), 1, anon_sym_RBRACE, - ACTIONS(3375), 1, - anon_sym_if, + STATE(1870), 1, + sym_for_in_clause, + STATE(2393), 1, + aux_sym_dictionary_repeat1, + STATE(2717), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1890), 3, + [105695] = 8, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(3400), 1, + anon_sym_COMMA, + ACTIONS(3402), 1, + anon_sym_RBRACE, + STATE(1870), 1, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105925] = 6, - ACTIONS(2977), 1, + STATE(2245), 1, + aux_sym_dictionary_repeat1, + STATE(2661), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105721] = 6, + ACTIONS(3029), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3344), 1, - anon_sym_RBRACK, - ACTIONS(3348), 1, + ACTIONS(3330), 1, + anon_sym_RPAREN, + ACTIONS(3341), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1880), 3, + STATE(1874), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105947] = 7, - ACTIONS(2732), 1, - sym_identifier, - ACTIONS(3377), 1, - anon_sym_DOT, - ACTIONS(3379), 1, - anon_sym___future__, - STATE(2252), 1, - aux_sym_import_prefix_repeat1, - STATE(2441), 1, - sym_import_prefix, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2733), 2, - sym_relative_import, - sym_dotted_name, - [105971] = 8, - ACTIONS(2993), 1, + [105743] = 8, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(3381), 1, + ACTIONS(3404), 1, anon_sym_COMMA, - ACTIONS(3383), 1, + ACTIONS(3406), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1870), 1, sym_for_in_clause, - STATE(2492), 1, + STATE(2415), 1, aux_sym_dictionary_repeat1, - STATE(2764), 1, + STATE(2615), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105997] = 4, - ACTIONS(801), 1, - sym_string_start, + [105769] = 6, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_and, + ACTIONS(2997), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1035), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 4, - anon_sym_RPAREN, + ACTIONS(3408), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [106015] = 4, - ACTIONS(3237), 1, + [105791] = 4, + ACTIONS(3252), 1, anon_sym_DOT, - STATE(1885), 1, + STATE(1877), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, + ACTIONS(3219), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [106033] = 6, + [105809] = 6, + ACTIONS(2991), 1, + anon_sym_as, ACTIONS(2993), 1, - anon_sym_async, + anon_sym_if, ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3350), 1, - anon_sym_RBRACE, - ACTIONS(3375), 1, + anon_sym_and, + ACTIONS(2997), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3410), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [105831] = 8, + ACTIONS(3176), 1, + anon_sym_RBRACK, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, anon_sym_if, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, + anon_sym_or, + ACTIONS(3412), 1, + anon_sym_COMMA, + STATE(2434), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1854), 3, + [105857] = 8, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(3414), 1, + anon_sym_COMMA, + ACTIONS(3416), 1, + anon_sym_RBRACE, + STATE(1870), 1, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106055] = 7, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + STATE(2288), 1, + aux_sym_dictionary_repeat1, + STATE(2676), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105883] = 8, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3418), 1, + anon_sym_COMMA, + ACTIONS(3420), 1, anon_sym_COLON, + STATE(2260), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3385), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106079] = 6, - ACTIONS(3005), 1, + [105909] = 7, + ACTIONS(1357), 1, + anon_sym_COLON, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3187), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(1355), 2, anon_sym_COMMA, - [106101] = 8, - ACTIONS(3176), 1, + anon_sym_RBRACK, + [105933] = 8, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3188), 1, + ACTIONS(3392), 1, + anon_sym_COMMA, + ACTIONS(3422), 1, + anon_sym_COLON, + STATE(2345), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105959] = 8, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3195), 1, - anon_sym_RPAREN, - ACTIONS(3389), 1, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3392), 1, anon_sym_COMMA, - STATE(2355), 1, + ACTIONS(3424), 1, + anon_sym_COLON, + STATE(2345), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106127] = 8, - ACTIONS(3391), 1, + [105985] = 8, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(3428), 1, anon_sym_LPAREN, - ACTIONS(3395), 1, + ACTIONS(3430), 1, anon_sym_STAR, - STATE(2114), 1, + STATE(1994), 1, sym_dotted_name, - STATE(2218), 1, + STATE(2220), 1, sym_aliased_import, - STATE(2566), 1, + STATE(2512), 1, sym__import_list, - STATE(2570), 1, + STATE(2514), 1, sym_wildcard_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106153] = 8, - ACTIONS(3079), 1, + [106011] = 4, + ACTIONS(3284), 1, + anon_sym_DOT, + STATE(1830), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3219), 5, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3081), 1, anon_sym_COMMA, - ACTIONS(3176), 1, + anon_sym_as, + anon_sym_PIPE, + [106029] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3434), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3432), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [106045] = 6, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(3328), 1, + anon_sym_if, + ACTIONS(3339), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1829), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106067] = 6, + ACTIONS(2961), 1, + anon_sym_async, + ACTIONS(2963), 1, + anon_sym_for, + ACTIONS(3339), 1, + anon_sym_RBRACK, + ACTIONS(3376), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1844), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106089] = 8, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3392), 1, + anon_sym_COMMA, + ACTIONS(3436), 1, + anon_sym_COLON, + STATE(2345), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106115] = 5, + ACTIONS(3025), 1, + anon_sym_as, + ACTIONS(3033), 1, + anon_sym_and, + ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3188), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3343), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106135] = 6, + ACTIONS(3354), 1, + anon_sym_RPAREN, + ACTIONS(3438), 1, + anon_sym_if, + ACTIONS(3441), 1, + anon_sym_async, + ACTIONS(3444), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1874), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106157] = 8, + ACTIONS(3070), 1, + anon_sym_RPAREN, + ACTIONS(3072), 1, + anon_sym_COMMA, + ACTIONS(3145), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3147), 1, anon_sym_if, - STATE(2273), 1, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, + anon_sym_or, + STATE(2255), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106179] = 4, - ACTIONS(3295), 1, + [106183] = 7, + ACTIONS(2716), 1, + sym_identifier, + ACTIONS(3447), 1, anon_sym_DOT, - STATE(1853), 1, + ACTIONS(3449), 1, + anon_sym___future__, + STATE(2108), 1, + aux_sym_import_prefix_repeat1, + STATE(2276), 1, + sym_import_prefix, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2760), 2, + sym_relative_import, + sym_dotted_name, + [106207] = 4, + ACTIONS(3451), 1, + anon_sym_DOT, + STATE(1877), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, + ACTIONS(3208), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [106197] = 7, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [106225] = 7, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3397), 1, + ACTIONS(3454), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1449), 2, + ACTIONS(1443), 2, anon_sym_COMMA, anon_sym_RBRACK, - [106221] = 4, - ACTIONS(3295), 1, - anon_sym_DOT, - STATE(1866), 1, - aux_sym_dotted_name_repeat1, + [106249] = 6, + ACTIONS(3145), 1, + anon_sym_as, + ACTIONS(3147), 1, + anon_sym_if, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, + ACTIONS(3206), 2, anon_sym_RPAREN, anon_sym_COMMA, + [106270] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3456), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106283] = 7, + ACTIONS(3458), 1, + anon_sym_DOT, + ACTIONS(3460), 1, + anon_sym_COMMA, + ACTIONS(3462), 1, + anon_sym_COLON, + ACTIONS(3464), 1, + anon_sym_RBRACK, + ACTIONS(3466), 1, + anon_sym_PIPE, + STATE(2261), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106306] = 4, + ACTIONS(3468), 1, + anon_sym_COMMA, + STATE(1882), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3471), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3229), 4, + anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [106239] = 8, - ACTIONS(3180), 1, + anon_sym_RBRACE, + [106338] = 6, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3354), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3475), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [106359] = 3, + ACTIONS(3477), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3229), 5, anon_sym_COMMA, - ACTIONS(3399), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - STATE(2298), 1, - aux_sym_assert_statement_repeat1, + anon_sym_PIPE, + [106374] = 6, + ACTIONS(3145), 1, + anon_sym_as, + ACTIONS(3147), 1, + anon_sym_if, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106265] = 8, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3401), 1, + ACTIONS(3479), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3403), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2354), 1, - aux_sym_dictionary_repeat1, - STATE(2703), 1, - sym__comprehension_clauses, + [106395] = 4, + ACTIONS(3483), 1, + anon_sym_COMMA, + STATE(1926), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106291] = 8, - ACTIONS(2993), 1, + ACTIONS(3481), 4, + anon_sym_RPAREN, + anon_sym_if, anon_sym_async, - ACTIONS(2995), 1, anon_sym_for, - ACTIONS(3405), 1, - anon_sym_COMMA, - ACTIONS(3407), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2435), 1, - aux_sym_dictionary_repeat1, - STATE(2633), 1, - sym__comprehension_clauses, + [106412] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3485), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106425] = 5, + ACTIONS(3489), 1, + anon_sym_DOT, + ACTIONS(3491), 1, + anon_sym_COLON, + ACTIONS(3493), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106317] = 8, - ACTIONS(3180), 1, + ACTIONS(3487), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [106444] = 6, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3354), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1443), 2, anon_sym_COMMA, - ACTIONS(3409), 1, + anon_sym_RBRACK, + [106465] = 7, + ACTIONS(3495), 1, + anon_sym_COMMA, + ACTIONS(3497), 1, + anon_sym_as, + ACTIONS(3499), 1, + anon_sym_if, + ACTIONS(3501), 1, anon_sym_COLON, - STATE(2298), 1, - aux_sym_assert_statement_repeat1, + STATE(2018), 1, + aux_sym_case_clause_repeat1, + STATE(2659), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106343] = 5, - ACTIONS(2973), 1, + [106488] = 4, + ACTIONS(3505), 1, + anon_sym_PIPE, + STATE(1957), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3503), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, + anon_sym_if, + anon_sym_COLON, + [106505] = 4, + ACTIONS(3507), 1, + anon_sym_DOT, + STATE(1933), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3219), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [106522] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3511), 1, + anon_sym_BSLASH, + ACTIONS(3509), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106539] = 4, + ACTIONS(3513), 1, + anon_sym_COMMA, + STATE(1934), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 4, + ACTIONS(3515), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [106363] = 3, + anon_sym_RBRACE, + [106556] = 4, + ACTIONS(3505), 1, + anon_sym_PIPE, + STATE(1957), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3517), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [106573] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3519), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3413), 2, + ACTIONS(3521), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3311), 5, + ACTIONS(3229), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [106601] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2955), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106614] = 3, + STATE(1957), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3523), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [106379] = 4, - ACTIONS(3415), 1, - anon_sym_DOT, - STATE(1875), 1, - aux_sym_dotted_name_repeat1, + [106629] = 4, + ACTIONS(3525), 1, + anon_sym_PIPE, + STATE(1901), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 5, - anon_sym_LPAREN, + ACTIONS(3523), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, + [106646] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3528), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [106397] = 5, - ACTIONS(2987), 1, + [106659] = 6, + ACTIONS(3145), 1, anon_sym_as, - ACTIONS(2999), 1, + ACTIONS(3147), 1, + anon_sym_if, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 4, + ACTIONS(3530), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [106680] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3204), 2, + anon_sym_COMMA, + anon_sym_COLON, + [106701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3534), 1, + anon_sym_BSLASH, + ACTIONS(3532), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106718] = 4, + ACTIONS(3536), 1, + anon_sym_COMMA, + STATE(1914), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3515), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [106417] = 4, - ACTIONS(755), 1, - sym_string_start, + anon_sym_RBRACK, + [106735] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1116), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 4, + ACTIONS(3519), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [106435] = 7, - ACTIONS(1419), 1, anon_sym_COLON, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + anon_sym_EQ, + anon_sym_PIPE, + [106748] = 6, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(2993), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(2995), 1, + anon_sym_and, + ACTIONS(2997), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1417), 2, + ACTIONS(3206), 2, + sym__newline, + anon_sym_SEMI, + [106769] = 4, + ACTIONS(3538), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [106459] = 8, - ACTIONS(2993), 1, + STATE(1982), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3540), 4, + anon_sym_if, anon_sym_async, - ACTIONS(2995), 1, anon_sym_for, - ACTIONS(3418), 1, + anon_sym_RBRACK, + [106786] = 6, + ACTIONS(3145), 1, + anon_sym_as, + ACTIONS(3147), 1, + anon_sym_if, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3542), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3420), 1, + [106807] = 7, + ACTIONS(3458), 1, + anon_sym_DOT, + ACTIONS(3462), 1, + anon_sym_COLON, + ACTIONS(3466), 1, + anon_sym_PIPE, + ACTIONS(3544), 1, + anon_sym_COMMA, + ACTIONS(3546), 1, + anon_sym_RBRACK, + STATE(2348), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3550), 1, + anon_sym_BSLASH, + ACTIONS(3548), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106847] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3208), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2310), 1, - aux_sym_dictionary_repeat1, - STATE(2791), 1, - sym__comprehension_clauses, + [106860] = 4, + ACTIONS(3552), 1, + anon_sym_COMMA, + STATE(1882), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106485] = 6, - ACTIONS(3422), 1, + ACTIONS(3554), 4, anon_sym_if, - ACTIONS(3425), 1, anon_sym_async, - ACTIONS(3428), 1, anon_sym_for, - ACTIONS(3431), 1, anon_sym_RBRACK, + [106877] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1880), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106507] = 5, - ACTIONS(3032), 1, + ACTIONS(3556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3432), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [106892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3560), 1, + anon_sym_BSLASH, + ACTIONS(3558), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106909] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3528), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106922] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3562), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106935] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3564), 2, + anon_sym_COMMA, + anon_sym_COLON, + [106956] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3566), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106969] = 6, + ACTIONS(3489), 1, + anon_sym_DOT, + ACTIONS(3491), 1, + anon_sym_COLON, + ACTIONS(3493), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3568), 2, + sym__newline, + anon_sym_SEMI, + [106990] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3530), 2, + anon_sym_COMMA, + anon_sym_COLON, + [107011] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3040), 1, + ACTIONS(3168), 1, + anon_sym_if, + ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3174), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106527] = 8, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3433), 1, + ACTIONS(3542), 2, anon_sym_COMMA, - ACTIONS(3435), 1, anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2261), 1, - aux_sym_dictionary_repeat1, - STATE(2616), 1, - sym__comprehension_clauses, + [107032] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106553] = 4, - ACTIONS(3437), 1, + ACTIONS(3572), 6, anon_sym_DOT, - STATE(1883), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3197), 5, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RBRACE, - [106571] = 4, - ACTIONS(3336), 1, - anon_sym_DOT, - STATE(1883), 1, - aux_sym_dotted_name_repeat1, + [107045] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, - anon_sym_LPAREN, + ACTIONS(3519), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RBRACE, - [106589] = 4, - ACTIONS(3237), 1, - anon_sym_DOT, - STATE(1875), 1, - aux_sym_dotted_name_repeat1, + [107058] = 4, + ACTIONS(3574), 1, + anon_sym_COMMA, + STATE(1926), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, - anon_sym_LPAREN, + ACTIONS(3471), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107075] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1632), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [106607] = 6, - ACTIONS(3005), 1, + [107088] = 6, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3187), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3440), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(1445), 2, anon_sym_COMMA, - [106629] = 6, - ACTIONS(3431), 1, - anon_sym_RPAREN, - ACTIONS(3442), 1, - anon_sym_if, - ACTIONS(3445), 1, - anon_sym_async, - ACTIONS(3448), 1, - anon_sym_for, + anon_sym_RBRACK, + [107109] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1887), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106651] = 8, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3451), 1, + ACTIONS(3456), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3453), 1, anon_sym_COLON, - STATE(2491), 1, - aux_sym_match_statement_repeat1, + anon_sym_EQ, + anon_sym_PIPE, + [107122] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106677] = 8, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3455), 1, + ACTIONS(3562), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3457), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2409), 1, - aux_sym_dictionary_repeat1, - STATE(2677), 1, - sym__comprehension_clauses, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107135] = 4, + ACTIONS(3577), 1, + anon_sym_COMMA, + STATE(1954), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106703] = 6, - ACTIONS(3431), 1, - anon_sym_RBRACE, - ACTIONS(3459), 1, + ACTIONS(3540), 4, anon_sym_if, - ACTIONS(3462), 1, anon_sym_async, - ACTIONS(3465), 1, anon_sym_for, + anon_sym_RBRACE, + [107152] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1890), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106725] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3470), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3468), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(1632), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [106741] = 4, - ACTIONS(3336), 1, + [107165] = 4, + ACTIONS(3579), 1, anon_sym_DOT, - STATE(1884), 1, + STATE(1933), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, + ACTIONS(3208), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106759] = 6, - ACTIONS(3036), 1, - anon_sym_async, - ACTIONS(3038), 1, - anon_sym_for, - ACTIONS(3346), 1, - anon_sym_if, - ACTIONS(3350), 1, - anon_sym_RPAREN, + [107182] = 4, + ACTIONS(3582), 1, + anon_sym_COMMA, + STATE(1970), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1845), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106781] = 4, - ACTIONS(708), 1, - sym_string_start, + ACTIONS(3554), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [107199] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(984), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 4, + ACTIONS(3208), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [106799] = 3, - STATE(1933), 1, - aux_sym_union_pattern_repeat1, + [107212] = 6, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, + anon_sym_if, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 5, + ACTIONS(3584), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [107233] = 6, + ACTIONS(2991), 1, anon_sym_as, + ACTIONS(2993), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106814] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(2997), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3474), 2, - anon_sym_COMMA, - anon_sym_COLON, - [106835] = 4, + ACTIONS(3586), 2, + sym__newline, + anon_sym_SEMI, + [107254] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3478), 1, + ACTIONS(3590), 1, anon_sym_BSLASH, - ACTIONS(3476), 5, + ACTIONS(3588), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [106852] = 6, - ACTIONS(3180), 1, + [107271] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 2, + ACTIONS(3592), 2, anon_sym_COMMA, anon_sym_COLON, - [106873] = 6, - ACTIONS(3180), 1, + [107292] = 4, + ACTIONS(3594), 1, + anon_sym_COMMA, + STATE(1887), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3540), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107309] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3174), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3480), 2, + ACTIONS(3596), 2, anon_sym_COMMA, - anon_sym_COLON, - [106894] = 6, - ACTIONS(3176), 1, + anon_sym_RBRACE, + [107330] = 7, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3188), 1, + ACTIONS(3598), 1, + anon_sym_COMMA, + ACTIONS(3600), 1, anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + ACTIONS(3602), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3482), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [106915] = 4, - ACTIONS(3484), 1, - anon_sym_DOT, - STATE(1940), 1, - aux_sym_dotted_name_repeat1, + [107353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3604), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3432), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [106932] = 2, + anon_sym_PIPE, + [107368] = 4, + ACTIONS(3606), 1, + anon_sym_COMMA, + STATE(1944), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2873), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [106945] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3488), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3311), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, anon_sym_RBRACE, - [106960] = 4, - ACTIONS(3490), 1, + sym_type_conversion, + [107385] = 4, + ACTIONS(3609), 1, anon_sym_COMMA, - STATE(1929), 1, + STATE(1926), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3492), 4, + ACTIONS(3554), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [106977] = 3, + [107402] = 7, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3600), 1, + anon_sym_as, + ACTIONS(3611), 1, + anon_sym_COMMA, + ACTIONS(3613), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3311), 4, - anon_sym_COMMA, + [107425] = 6, + ACTIONS(3166), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [106992] = 6, - ACTIONS(3202), 1, + ACTIONS(3168), 1, + anon_sym_if, + ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3174), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107446] = 6, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1457), 2, + ACTIONS(3204), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107013] = 3, + [107467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3496), 2, + ACTIONS(3615), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3468), 4, - anon_sym_RPAREN, + ACTIONS(3432), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [107028] = 4, - ACTIONS(3500), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3498), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107045] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3502), 6, + [107482] = 7, + ACTIONS(3458), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3462), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107058] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3197), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3466), 1, anon_sym_PIPE, - anon_sym_RBRACE, - [107071] = 7, - ACTIONS(3504), 1, - anon_sym_DOT, - ACTIONS(3506), 1, + ACTIONS(3617), 1, anon_sym_COMMA, - ACTIONS(3508), 1, - anon_sym_COLON, - ACTIONS(3510), 1, + ACTIONS(3619), 1, anon_sym_RBRACK, - ACTIONS(3512), 1, - anon_sym_PIPE, - STATE(2324), 1, + STATE(2315), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107094] = 3, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3311), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [107109] = 7, - ACTIONS(3516), 1, - anon_sym_COMMA, - ACTIONS(3518), 1, - anon_sym_as, - ACTIONS(3520), 1, - anon_sym_if, - ACTIONS(3522), 1, - anon_sym_COLON, - STATE(2046), 1, - aux_sym_case_clause_repeat1, - STATE(2756), 1, - sym_if_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107132] = 4, - ACTIONS(3526), 1, - anon_sym_PIPE, - STATE(1933), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, + [107505] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3524), 4, - anon_sym_COMMA, + ACTIONS(3623), 1, + anon_sym_BSLASH, + ACTIONS(3621), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107522] = 6, + ACTIONS(3166), 1, anon_sym_as, + ACTIONS(3168), 1, anon_sym_if, - anon_sym_COLON, - [107149] = 6, - ACTIONS(3176), 1, + ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3174), 1, anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3528), 2, - anon_sym_RPAREN, + ACTIONS(3584), 2, anon_sym_COMMA, - [107170] = 4, - ACTIONS(3530), 1, + anon_sym_RBRACE, + [107543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3627), 1, + anon_sym_BSLASH, + ACTIONS(3625), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107560] = 4, + ACTIONS(3629), 1, anon_sym_COMMA, - STATE(1966), 1, + STATE(1970), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 4, + ACTIONS(3481), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [107187] = 2, + [107577] = 4, + ACTIONS(3507), 1, + anon_sym_DOT, + STATE(1893), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 6, + ACTIONS(3192), 4, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107200] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3197), 6, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [107213] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2971), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107226] = 5, - ACTIONS(3538), 1, + [107594] = 7, + ACTIONS(3458), 1, anon_sym_DOT, - ACTIONS(3540), 1, + ACTIONS(3462), 1, anon_sym_COLON, - ACTIONS(3542), 1, + ACTIONS(3466), 1, anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_COMMA, + ACTIONS(3633), 1, + anon_sym_RBRACK, + STATE(2316), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [107245] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3546), 1, - anon_sym_BSLASH, - ACTIONS(3544), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107262] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3548), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + [107617] = 4, + ACTIONS(3505), 1, anon_sym_PIPE, - [107275] = 2, + STATE(1901), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3502), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3635), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107288] = 6, - ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3007), 1, anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3550), 2, - sym__newline, - anon_sym_SEMI, - [107309] = 4, - ACTIONS(3552), 1, + anon_sym_COLON, + [107634] = 4, + ACTIONS(3637), 1, anon_sym_COMMA, - STATE(1978), 1, + STATE(1945), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 4, + ACTIONS(3515), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [107326] = 6, - ACTIONS(3163), 1, + [107651] = 6, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3187), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3554), 2, + ACTIONS(3206), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [107347] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + anon_sym_RBRACK, + [107672] = 6, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3185), 1, + anon_sym_and, + ACTIONS(3187), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3214), 2, + ACTIONS(3542), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107368] = 6, - ACTIONS(3005), 1, + [107693] = 6, + ACTIONS(3145), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3147), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3556), 2, - sym__newline, - anon_sym_SEMI, - [107389] = 4, - ACTIONS(3558), 1, + ACTIONS(3204), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1969), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3498), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107406] = 2, + [107714] = 6, + ACTIONS(3639), 1, + anon_sym_DOT, + ACTIONS(3643), 1, + anon_sym_COLON, + ACTIONS(3645), 1, + anon_sym_EQ, + ACTIONS(3647), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3641), 2, anon_sym_RPAREN, anon_sym_COMMA, + [107735] = 6, + ACTIONS(3145), 1, anon_sym_as, - anon_sym_PIPE, - [107419] = 6, - ACTIONS(3163), 1, - anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3147), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107440] = 4, - ACTIONS(3562), 1, + ACTIONS(3592), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1908), 1, - aux_sym_for_in_clause_repeat1, + [107756] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3492), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107457] = 4, - ACTIONS(3526), 1, + ACTIONS(3528), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - STATE(1980), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3564), 4, + [107769] = 4, + ACTIONS(3649), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [107474] = 4, - ACTIONS(3568), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1934), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3566), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [107491] = 2, + STATE(1944), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(979), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [107504] = 6, - ACTIONS(3180), 1, + anon_sym_RBRACE, + sym_type_conversion, + [107786] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3482), 2, + ACTIONS(3651), 2, anon_sym_COMMA, anon_sym_COLON, - [107525] = 3, + [107807] = 4, + ACTIONS(3653), 1, + anon_sym_COMMA, + STATE(1967), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3571), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3468), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + ACTIONS(3204), 4, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - [107540] = 2, + sym_type_conversion, + [107824] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3502), 6, + ACTIONS(2955), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107553] = 6, - ACTIONS(3202), 1, + [107837] = 4, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1449), 2, + ACTIONS(3008), 4, anon_sym_COMMA, - anon_sym_RBRACK, - [107574] = 4, - ACTIONS(3484), 1, - anon_sym_DOT, - STATE(1965), 1, - aux_sym_dotted_name_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [107854] = 4, + ACTIONS(3656), 1, + anon_sym_COMMA, + STATE(1970), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [107591] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3471), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [107871] = 6, + ACTIONS(3145), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3147), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, + ACTIONS(3659), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [107612] = 4, + [107892] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3575), 1, + ACTIONS(3663), 1, anon_sym_BSLASH, - ACTIONS(3573), 5, + ACTIONS(3661), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107629] = 7, - ACTIONS(3504), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_PIPE, - ACTIONS(3577), 1, - anon_sym_COMMA, - ACTIONS(3579), 1, - anon_sym_RBRACK, - STATE(2284), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107652] = 6, - ACTIONS(3163), 1, + [107909] = 6, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(2993), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(2997), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107673] = 4, - ACTIONS(3184), 1, + ACTIONS(3665), 2, + sym__newline, + anon_sym_SEMI, + [107930] = 6, + ACTIONS(3145), 1, + anon_sym_as, + ACTIONS(3147), 1, + anon_sym_if, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 4, + ACTIONS(3584), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [107951] = 6, + ACTIONS(3145), 1, anon_sym_as, + ACTIONS(3147), 1, anon_sym_if, - anon_sym_COLON, - [107690] = 3, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3468), 4, + ACTIONS(3596), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [107705] = 2, + [107972] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 6, + ACTIONS(3208), 6, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [107718] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + [107985] = 6, + ACTIONS(3145), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3147), 1, anon_sym_if, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3585), 2, + ACTIONS(3667), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107739] = 6, - ACTIONS(3163), 1, + [108006] = 6, + ACTIONS(3145), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3147), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107760] = 7, - ACTIONS(3504), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_PIPE, - ACTIONS(3589), 1, + ACTIONS(3564), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3591), 1, - anon_sym_RBRACK, - STATE(2350), 1, - aux_sym_type_parameter_repeat1, + [108027] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107783] = 4, - ACTIONS(3593), 1, + ACTIONS(3485), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1993), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108040] = 5, + ACTIONS(3639), 1, + anon_sym_DOT, + ACTIONS(3643), 1, + anon_sym_COLON, + ACTIONS(3647), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3498), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107800] = 2, + ACTIONS(3487), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [108059] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3566), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107813] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3595), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107834] = 4, - ACTIONS(3599), 1, + [108072] = 4, + ACTIONS(3669), 1, anon_sym_COMMA, - STATE(1957), 1, + STATE(1882), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3597), 4, - anon_sym_RPAREN, + ACTIONS(3481), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [107851] = 4, - ACTIONS(3601), 1, - anon_sym_COMMA, - STATE(1951), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACK, + [108089] = 4, + ACTIONS(3673), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3492), 4, - anon_sym_if, + STATE(1983), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3671), 3, anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107868] = 2, + anon_sym_def, + anon_sym_class, + [108106] = 4, + ACTIONS(3676), 1, + anon_sym_COMMA, + STATE(1967), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(1291), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [107881] = 4, - ACTIONS(3605), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACE, + sym_type_conversion, + [108123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 4, + ACTIONS(3678), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3229), 4, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107898] = 2, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [108138] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 6, + ACTIONS(3572), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107911] = 5, - ACTIONS(3608), 1, + [108151] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3572), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(3610), 1, anon_sym_COLON, - ACTIONS(3612), 1, + anon_sym_EQ, anon_sym_PIPE, + [108164] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 3, - anon_sym_RPAREN, + ACTIONS(3485), 5, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [107930] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3616), 1, - anon_sym_BSLASH, - ACTIONS(3614), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3620), 1, - anon_sym_BSLASH, - ACTIONS(3618), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107964] = 3, + anon_sym_PIPE, + [108176] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3311), 4, - anon_sym_RPAREN, + ACTIONS(3680), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [107979] = 4, - ACTIONS(3624), 1, - anon_sym_COMMA, - STATE(1994), 1, - aux_sym__patterns_repeat1, + [108188] = 4, + ACTIONS(3682), 1, + anon_sym_PIPE, + STATE(2091), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(995), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [107996] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + ACTIONS(3503), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + [108204] = 3, + STATE(2091), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3554), 2, + ACTIONS(3523), 4, anon_sym_RPAREN, anon_sym_COMMA, - [108017] = 4, - ACTIONS(3626), 1, - anon_sym_DOT, - STATE(1965), 1, - aux_sym_dotted_name_repeat1, + anon_sym_as, + anon_sym_PIPE, + [108218] = 4, + ACTIONS(3684), 1, + anon_sym_PIPE, + STATE(1992), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3523), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [108034] = 4, - ACTIONS(3629), 1, - anon_sym_COMMA, - STATE(1969), 1, - aux_sym_for_in_clause_repeat1, + [108234] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3597), 4, + ACTIONS(3687), 5, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [108051] = 2, + anon_sym_RBRACK, + [108246] = 5, + ACTIONS(3691), 1, + anon_sym_COMMA, + ACTIONS(3693), 1, + anon_sym_as, + STATE(2173), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 6, + ACTIONS(3689), 2, + sym__newline, + anon_sym_SEMI, + [108264] = 5, + ACTIONS(3695), 1, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3697), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3699), 1, anon_sym_PIPE, - [108064] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3487), 2, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, + [108282] = 5, + ACTIONS(3489), 1, + anon_sym_DOT, + ACTIONS(3491), 1, + anon_sym_COLON, + ACTIONS(3493), 1, anon_sym_PIPE, - [108077] = 4, - ACTIONS(3633), 1, - anon_sym_COMMA, - STATE(1969), 1, - aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [108094] = 2, + ACTIONS(3701), 2, + sym__newline, + anon_sym_SEMI, + [108300] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3636), 6, + ACTIONS(3566), 5, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108107] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, + [108312] = 6, + ACTIONS(3703), 1, + anon_sym_COLON, + ACTIONS(3705), 1, + anon_sym_EQ, + ACTIONS(3707), 1, + anon_sym_RBRACE, + ACTIONS(3709), 1, + sym_type_conversion, + STATE(2743), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3554), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108128] = 4, - ACTIONS(3526), 1, + [108332] = 4, + ACTIONS(3711), 1, anon_sym_PIPE, - STATE(1933), 1, + STATE(2107), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3638), 4, + ACTIONS(3503), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [108145] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3642), 1, - anon_sym_BSLASH, - ACTIONS(3640), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108162] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + anon_sym_RBRACE, + [108348] = 3, + STATE(2107), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108183] = 7, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3644), 1, + ACTIONS(3523), 4, anon_sym_COMMA, - ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3648), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108206] = 4, - ACTIONS(3650), 1, - anon_sym_COMMA, - STATE(1954), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3532), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [108223] = 7, - ACTIONS(3182), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [108362] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3646), 1, - anon_sym_as, - ACTIONS(3652), 1, - anon_sym_COMMA, - ACTIONS(3654), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108246] = 4, - ACTIONS(3656), 1, - anon_sym_COMMA, - STATE(1993), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3713), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3597), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108263] = 4, - ACTIONS(3658), 1, - anon_sym_COMMA, + [108382] = 4, + ACTIONS(3715), 1, + anon_sym_PIPE, STATE(2002), 1, - aux_sym_assert_statement_repeat1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1299), 4, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3523), 3, + anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACE, - sym_type_conversion, - [108280] = 4, - ACTIONS(3660), 1, + [108398] = 5, + ACTIONS(3458), 1, + anon_sym_DOT, + ACTIONS(3462), 1, + anon_sym_COLON, + ACTIONS(3466), 1, anon_sym_PIPE, - STATE(1980), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, + ACTIONS(3718), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [108416] = 6, + ACTIONS(3153), 1, anon_sym_as, + ACTIONS(3155), 1, anon_sym_if, - anon_sym_COLON, - [108297] = 6, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3214), 2, - sym__newline, - anon_sym_SEMI, - [108318] = 6, - ACTIONS(3176), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3232), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108339] = 2, + ACTIONS(3720), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108352] = 2, + [108436] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(2955), 5, anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [108365] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + [108448] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3663), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108386] = 6, - ACTIONS(3538), 1, - anon_sym_DOT, - ACTIONS(3540), 1, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3722), 1, anon_sym_COLON, - ACTIONS(3542), 1, - anon_sym_PIPE, - ACTIONS(3667), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3665), 2, - sym__newline, - anon_sym_SEMI, - [108407] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + [108468] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3155), 1, anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3724), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3480), 2, - anon_sym_RPAREN, + [108488] = 4, + ACTIONS(3726), 1, anon_sym_COMMA, - [108428] = 2, + STATE(2008), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3636), 6, + ACTIONS(3204), 3, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108441] = 2, + anon_sym_from, + [108504] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3729), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [108454] = 2, + [108516] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3731), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108467] = 6, - ACTIONS(3180), 1, anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_PIPE, + [108528] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3585), 2, + ACTIONS(3733), 5, anon_sym_COMMA, - anon_sym_COLON, - [108488] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3190), 1, anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108540] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3669), 2, - anon_sym_RPAREN, + ACTIONS(3735), 5, anon_sym_COMMA, - [108509] = 4, - ACTIONS(3671), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108552] = 5, + ACTIONS(3737), 1, anon_sym_COMMA, - STATE(1993), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3739), 1, + anon_sym_RBRACE, + STATE(2367), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108526] = 4, - ACTIONS(3674), 1, + ACTIONS(3229), 2, + anon_sym_COLON, + anon_sym_PIPE, + [108570] = 5, + ACTIONS(3741), 1, anon_sym_COMMA, - STATE(1994), 1, - aux_sym__patterns_repeat1, + ACTIONS(3743), 1, + anon_sym_RBRACE, + STATE(2450), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 4, + ACTIONS(3229), 2, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108543] = 4, - ACTIONS(3), 1, + anon_sym_PIPE, + [108588] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3679), 1, - anon_sym_BSLASH, - ACTIONS(3677), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108560] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + ACTIONS(1632), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [108600] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108581] = 6, - ACTIONS(3608), 1, + ACTIONS(3456), 5, anon_sym_DOT, - ACTIONS(3610), 1, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3612), 1, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(3683), 1, - anon_sym_EQ, + [108612] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3681), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108602] = 7, - ACTIONS(3504), 1, + ACTIONS(3562), 5, anon_sym_DOT, - ACTIONS(3508), 1, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3512), 1, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(3685), 1, + [108624] = 6, + ACTIONS(2582), 1, + anon_sym_COLON, + ACTIONS(3499), 1, + anon_sym_if, + ACTIONS(3745), 1, anon_sym_COMMA, - ACTIONS(3687), 1, - anon_sym_RBRACK, - STATE(2280), 1, - aux_sym_type_parameter_repeat1, + STATE(2167), 1, + aux_sym_case_clause_repeat1, + STATE(2763), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108625] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [108644] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, anon_sym_or, + ACTIONS(3747), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108646] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + [108664] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3214), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108667] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3691), 1, - anon_sym_BSLASH, - ACTIONS(3689), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108684] = 4, - ACTIONS(3693), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3232), 4, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3749), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108701] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108714] = 2, + [108684] = 4, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 5, - anon_sym_COMMA, + ACTIONS(3008), 3, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [108726] = 6, - ACTIONS(3180), 1, + [108700] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3698), 1, + ACTIONS(3751), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108746] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, + [108720] = 6, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3700), 1, + ACTIONS(3753), 1, + anon_sym_as, + ACTIONS(3755), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108766] = 2, + [108740] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 5, + ACTIONS(3485), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108778] = 3, - ACTIONS(3702), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3311), 4, - anon_sym_COMMA, - anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [108792] = 4, - ACTIONS(3704), 1, + [108752] = 5, + ACTIONS(3458), 1, + anon_sym_DOT, + ACTIONS(3462), 1, + anon_sym_COLON, + ACTIONS(3466), 1, anon_sym_PIPE, - STATE(2111), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3524), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [108808] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 5, - anon_sym_RPAREN, + ACTIONS(3487), 2, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [108820] = 2, + anon_sym_RBRACK, + [108770] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 5, + ACTIONS(3566), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [108832] = 2, + [108782] = 5, + ACTIONS(3639), 1, + anon_sym_DOT, + ACTIONS(3643), 1, + anon_sym_COLON, + ACTIONS(3647), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 5, + ACTIONS(3641), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + [108800] = 5, + ACTIONS(3757), 1, + anon_sym_COMMA, + ACTIONS(3759), 1, + anon_sym_RBRACE, + STATE(2275), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3229), 2, anon_sym_COLON, anon_sym_PIPE, - [108844] = 6, - ACTIONS(3710), 1, + [108818] = 6, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3712), 1, + ACTIONS(3763), 1, anon_sym_RBRACE, - ACTIONS(3714), 1, + ACTIONS(3765), 1, aux_sym_format_specifier_token1, - STATE(2117), 1, + STATE(2093), 1, aux_sym_format_specifier_repeat1, - STATE(2465), 1, + STATE(2470), 1, sym_interpolation, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [108864] = 2, + [108838] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 5, + ACTIONS(3572), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [108876] = 2, + [108850] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 5, + ACTIONS(3767), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [108888] = 4, - ACTIONS(3718), 1, - anon_sym_PIPE, - STATE(2072), 1, - aux_sym_union_pattern_repeat1, + [108862] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 3, + ACTIONS(3471), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [108904] = 4, - ACTIONS(3720), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [108874] = 4, + ACTIONS(3769), 1, anon_sym_COMMA, - STATE(2052), 1, + STATE(2008), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1299), 3, + ACTIONS(1291), 3, sym__newline, anon_sym_SEMI, anon_sym_from, - [108920] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3722), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108940] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3724), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108952] = 2, + [108890] = 3, + ACTIONS(3771), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 5, + ACTIONS(3229), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [108964] = 5, - ACTIONS(3728), 1, - anon_sym_COMMA, - ACTIONS(3730), 1, - anon_sym_RBRACE, - STATE(2282), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3311), 2, - anon_sym_COLON, + [108904] = 4, + ACTIONS(3773), 1, anon_sym_PIPE, - [108982] = 2, + STATE(2041), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 5, + ACTIONS(3517), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108994] = 4, - ACTIONS(3734), 1, - anon_sym_PIPE, - STATE(2060), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACK, + [108920] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [109010] = 6, - ACTIONS(3681), 1, - anon_sym_COMMA, - ACTIONS(3736), 1, + ACTIONS(3519), 5, anon_sym_DOT, - ACTIONS(3738), 1, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3740), 1, - anon_sym_EQ, - ACTIONS(3742), 1, + anon_sym_RBRACK, anon_sym_PIPE, + [108932] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109030] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3197), 5, + ACTIONS(3208), 5, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, - [109042] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3744), 1, - anon_sym_else, + [108944] = 6, + ACTIONS(3641), 1, + anon_sym_COMMA, + ACTIONS(3695), 1, + anon_sym_DOT, + ACTIONS(3697), 1, + anon_sym_COLON, + ACTIONS(3699), 1, + anon_sym_PIPE, + ACTIONS(3775), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109062] = 2, + [108964] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 5, + ACTIONS(3777), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109074] = 6, - ACTIONS(3180), 1, + [108976] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3748), 1, - anon_sym_COLON, + ACTIONS(3779), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109094] = 2, + [108996] = 4, + ACTIONS(3773), 1, + anon_sym_PIPE, + STATE(2049), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 5, + ACTIONS(3635), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109106] = 2, + anon_sym_RBRACK, + [109012] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 5, + ACTIONS(3528), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [109118] = 2, + [109024] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 5, - anon_sym_DOT, + ACTIONS(3781), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [109130] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, + [109036] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 2, - sym__newline, - anon_sym_SEMI, - [109148] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3767), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3754), 1, - anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [109048] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109168] = 6, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(3758), 1, - anon_sym_EQ, - ACTIONS(3760), 1, + ACTIONS(3471), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - ACTIONS(3762), 1, - sym_type_conversion, - STATE(2792), 1, - sym_format_specifier, + [109060] = 5, + ACTIONS(3783), 1, + anon_sym_COMMA, + ACTIONS(3785), 1, + anon_sym_RBRACE, + STATE(2330), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109188] = 2, + ACTIONS(3229), 2, + anon_sym_COLON, + anon_sym_PIPE, + [109078] = 4, + ACTIONS(3773), 1, + anon_sym_PIPE, + STATE(2041), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 5, + ACTIONS(3503), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109200] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, + anon_sym_RBRACK, + [109094] = 3, + STATE(2041), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 2, - sym__newline, - anon_sym_SEMI, - [109218] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, + ACTIONS(3523), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [109108] = 4, + ACTIONS(3787), 1, + anon_sym_PIPE, + STATE(2049), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 2, - sym__newline, - anon_sym_SEMI, - [109236] = 2, + ACTIONS(3523), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [109124] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 5, + ACTIONS(3687), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [109248] = 6, - ACTIONS(3768), 1, - anon_sym_LBRACE, - ACTIONS(3771), 1, - anon_sym_RBRACE, - ACTIONS(3773), 1, - aux_sym_format_specifier_token1, - STATE(2039), 1, - aux_sym_format_specifier_repeat1, - STATE(2465), 1, - sym_interpolation, - ACTIONS(5), 2, + [109136] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3790), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109268] = 2, + [109156] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 5, + ACTIONS(3792), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109280] = 2, + [109168] = 5, + ACTIONS(3426), 1, + sym_identifier, + STATE(2142), 1, + sym_dotted_name, + STATE(2237), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACE, - [109292] = 2, + ACTIONS(3794), 2, + sym__newline, + anon_sym_SEMI, + [109186] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 5, + ACTIONS(1565), 5, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - [109304] = 2, + sym_type_conversion, + [109198] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3780), 5, + ACTIONS(3796), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109316] = 5, - ACTIONS(3782), 1, - anon_sym_COMMA, - ACTIONS(3784), 1, - anon_sym_RBRACE, - STATE(2361), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3311), 2, - anon_sym_COLON, - anon_sym_PIPE, - [109334] = 2, + [109210] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 5, + ACTIONS(3798), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109346] = 6, - ACTIONS(2598), 1, - anon_sym_COLON, - ACTIONS(3520), 1, - anon_sym_if, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(2164), 1, - aux_sym_case_clause_repeat1, - STATE(2662), 1, - sym_if_clause, + [109222] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109366] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3790), 5, + ACTIONS(3800), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109378] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2904), 5, - anon_sym_COMMA, + [109234] = 6, + ACTIONS(3703), 1, anon_sym_COLON, + ACTIONS(3802), 1, anon_sym_EQ, + ACTIONS(3804), 1, anon_sym_RBRACE, + ACTIONS(3806), 1, sym_type_conversion, - [109390] = 2, + STATE(2664), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109402] = 2, + [109254] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 5, + ACTIONS(3808), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109414] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3794), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109434] = 4, - ACTIONS(3796), 1, - anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + [109266] = 5, + ACTIONS(3426), 1, + sym_identifier, + STATE(2142), 1, + sym_dotted_name, + STATE(2237), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 3, + ACTIONS(3794), 2, sym__newline, anon_sym_SEMI, - anon_sym_from, - [109450] = 6, - ACTIONS(3180), 1, + [109284] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3799), 1, - anon_sym_COLON, + ACTIONS(3810), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109470] = 6, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3801), 1, - anon_sym_LPAREN, - ACTIONS(3803), 1, - anon_sym_COLON, - STATE(2468), 1, - sym_type_parameter, - STATE(2698), 1, - sym_argument_list, + [109304] = 5, + ACTIONS(3426), 1, + sym_identifier, + STATE(2142), 1, + sym_dotted_name, + STATE(2237), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109490] = 2, + ACTIONS(3812), 2, + sym__newline, + anon_sym_SEMI, + [109322] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 5, + ACTIONS(3176), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [109502] = 6, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, - ACTIONS(3807), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109522] = 6, - ACTIONS(3180), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109334] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3809), 1, - anon_sym_COLON, + ACTIONS(3814), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109542] = 4, - ACTIONS(3734), 1, - anon_sym_PIPE, - STATE(2023), 1, - aux_sym_union_pattern_repeat1, + [109354] = 3, + ACTIONS(3816), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3638), 3, + ACTIONS(3229), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109558] = 3, - STATE(2023), 1, - aux_sym_union_pattern_repeat1, + anon_sym_PIPE, + [109368] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, + ACTIONS(3687), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [109572] = 4, - ACTIONS(3811), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [109380] = 4, + ACTIONS(3682), 1, anon_sym_PIPE, - STATE(2060), 1, + STATE(2091), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, + ACTIONS(3517), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109588] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1673), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [109600] = 2, + [109396] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 5, - anon_sym_DOT, + ACTIONS(3731), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [109612] = 4, - ACTIONS(3718), 1, - anon_sym_PIPE, - STATE(2016), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3638), 3, - anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACE, - [109628] = 2, + [109408] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, - anon_sym_DOT, + ACTIONS(3818), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [109640] = 6, - ACTIONS(3182), 1, + [109420] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3814), 1, - anon_sym_as, - ACTIONS(3816), 1, - anon_sym_COLON, + ACTIONS(3820), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109660] = 3, - STATE(2016), 1, - aux_sym_union_pattern_repeat1, + [109440] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, + ACTIONS(3822), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [109674] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3818), 1, anon_sym_COLON, + anon_sym_PIPE, + [109452] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109694] = 6, - ACTIONS(3180), 1, + ACTIONS(3824), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3820), 1, anon_sym_COLON, + anon_sym_PIPE, + [109464] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109714] = 3, - ACTIONS(3822), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3311), 4, - anon_sym_RPAREN, + ACTIONS(2882), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [109728] = 6, - ACTIONS(3756), 1, anon_sym_COLON, - ACTIONS(3824), 1, anon_sym_EQ, - ACTIONS(3826), 1, anon_sym_RBRACE, - ACTIONS(3828), 1, sym_type_conversion, - STATE(2769), 1, - sym_format_specifier, + [109476] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109748] = 6, - ACTIONS(3180), 1, + ACTIONS(3826), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3830), 1, anon_sym_COLON, + anon_sym_PIPE, + [109488] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109768] = 4, - ACTIONS(3832), 1, + ACTIONS(3828), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(2072), 1, - aux_sym_union_pattern_repeat1, + [109500] = 6, + ACTIONS(3426), 1, + sym_identifier, + ACTIONS(3830), 1, + anon_sym_LPAREN, + STATE(1994), 1, + sym_dotted_name, + STATE(2220), 1, + sym_aliased_import, + STATE(2507), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, + [109520] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3832), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109784] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109532] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 5, + ACTIONS(2884), 5, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - [109796] = 2, + sym_type_conversion, + [109544] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3834), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 5, - anon_sym_COMMA, + [109564] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [109808] = 6, - ACTIONS(3391), 1, - sym_identifier, - ACTIONS(3837), 1, - anon_sym_LPAREN, - STATE(2114), 1, - sym_dotted_name, - STATE(2218), 1, - sym_aliased_import, - STATE(2562), 1, - sym__import_list, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3836), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109828] = 2, + [109584] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 5, - anon_sym_DOT, + ACTIONS(3838), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [109840] = 2, + [109596] = 6, + ACTIONS(1563), 1, + anon_sym_LBRACK, + ACTIONS(3840), 1, + anon_sym_LPAREN, + ACTIONS(3842), 1, + anon_sym_COLON, + STATE(2448), 1, + sym_type_parameter, + STATE(2678), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3636), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [109852] = 2, + [109616] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 5, + ACTIONS(2955), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [109864] = 5, - ACTIONS(3504), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_PIPE, + [109628] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3839), 2, + ACTIONS(3844), 5, anon_sym_COMMA, - anon_sym_RBRACK, - [109882] = 6, - ACTIONS(1579), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109640] = 6, + ACTIONS(1563), 1, anon_sym_LBRACK, - ACTIONS(3801), 1, + ACTIONS(3840), 1, anon_sym_LPAREN, - ACTIONS(3841), 1, + ACTIONS(3846), 1, anon_sym_COLON, - STATE(2507), 1, + STATE(2421), 1, sym_type_parameter, - STATE(2794), 1, + STATE(2665), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109902] = 2, + [109660] = 6, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3851), 1, + anon_sym_RBRACE, + ACTIONS(3853), 1, + aux_sym_format_specifier_token1, + STATE(2086), 1, + aux_sym_format_specifier_repeat1, + STATE(2470), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [109680] = 6, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3753), 1, + anon_sym_as, + ACTIONS(3856), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 5, - anon_sym_COMMA, + [109700] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [109914] = 5, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3845), 1, - anon_sym_RBRACE, - STATE(2335), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3858), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 2, + [109720] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3860), 1, anon_sym_COLON, - anon_sym_PIPE, - [109932] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [109944] = 2, + [109740] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 5, - anon_sym_DOT, + ACTIONS(2873), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109752] = 4, + ACTIONS(3682), 1, anon_sym_PIPE, - [109956] = 3, - ACTIONS(3847), 1, - anon_sym_LPAREN, + STATE(1992), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 4, + ACTIONS(3635), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [109970] = 2, + [109768] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 5, + ACTIONS(1632), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [109982] = 4, - ACTIONS(3734), 1, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - STATE(2023), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, + [109780] = 6, + ACTIONS(3761), 1, + anon_sym_LBRACE, + ACTIONS(3862), 1, + anon_sym_RBRACE, + ACTIONS(3864), 1, + aux_sym_format_specifier_token1, + STATE(2086), 1, + aux_sym_format_specifier_repeat1, + STATE(2470), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [109998] = 2, + [109800] = 3, + ACTIONS(3866), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 5, + ACTIONS(3229), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - sym_type_conversion, - [110010] = 6, - ACTIONS(3180), 1, + [109814] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3411), 1, + ACTIONS(3868), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110030] = 2, + [109834] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3636), 5, + ACTIONS(3456), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [110042] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3849), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110062] = 2, + [109846] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 5, + ACTIONS(3562), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [110074] = 4, - ACTIONS(3718), 1, + [109858] = 4, + ACTIONS(3711), 1, anon_sym_PIPE, - STATE(2016), 1, + STATE(2107), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + ACTIONS(3517), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACE, - [110090] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3851), 1, - anon_sym_COLON, + [109874] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110110] = 2, + ACTIONS(3767), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [109886] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 5, - anon_sym_RPAREN, + ACTIONS(3471), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [110122] = 6, - ACTIONS(3180), 1, + anon_sym_RBRACK, + [109898] = 6, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(2993), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(2995), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(2997), 1, anon_sym_or, - ACTIONS(3853), 1, - anon_sym_else, + ACTIONS(3870), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110142] = 2, + [109918] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3502), 5, - anon_sym_DOT, + ACTIONS(3872), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [110154] = 2, + [109930] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, - anon_sym_DOT, + ACTIONS(3874), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [110166] = 4, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3015), 3, anon_sym_as, anon_sym_if, anon_sym_COLON, - [110182] = 5, - ACTIONS(3538), 1, - anon_sym_DOT, - ACTIONS(3540), 1, - anon_sym_COLON, - ACTIONS(3542), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3855), 2, - sym__newline, - anon_sym_SEMI, - [110200] = 5, - ACTIONS(3504), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_COLON, - ACTIONS(3512), 1, anon_sym_PIPE, + [109942] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [110218] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3857), 5, + ACTIONS(3876), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110230] = 6, - ACTIONS(3180), 1, + [109954] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3859), 1, - anon_sym_else, + ACTIONS(3343), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110250] = 5, - ACTIONS(3608), 1, - anon_sym_DOT, - ACTIONS(3610), 1, - anon_sym_COLON, - ACTIONS(3612), 1, - anon_sym_PIPE, + [109974] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3681), 2, - anon_sym_RPAREN, + ACTIONS(3878), 5, anon_sym_COMMA, - [110268] = 4, - ACTIONS(3704), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(2111), 1, + [109986] = 4, + ACTIONS(3711), 1, + anon_sym_PIPE, + STATE(2002), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3638), 3, - anon_sym_RPAREN, + ACTIONS(3635), 3, anon_sym_COMMA, anon_sym_as, - [110284] = 3, - STATE(2111), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACE, + [110002] = 4, + ACTIONS(3882), 1, + anon_sym_DOT, + STATE(2209), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110298] = 2, + ACTIONS(3880), 2, + anon_sym_import, + sym_identifier, + [110017] = 5, + ACTIONS(3884), 1, + anon_sym_case, + ACTIONS(3886), 1, + sym__dedent, + STATE(2199), 1, + aux_sym__match_block_repeat1, + STATE(2544), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 5, + [110034] = 4, + ACTIONS(3890), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [110310] = 5, - ACTIONS(3863), 1, - anon_sym_COMMA, - ACTIONS(3865), 1, - anon_sym_RBRACE, - STATE(2292), 1, - aux_sym_dict_pattern_repeat1, + STATE(2193), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 2, - anon_sym_COLON, - anon_sym_PIPE, - [110328] = 5, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_COLON, - ACTIONS(3742), 1, - anon_sym_PIPE, + ACTIONS(3888), 2, + sym__newline, + anon_sym_SEMI, + [110049] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 2, + ACTIONS(3733), 4, anon_sym_COMMA, - anon_sym_EQ, - [110346] = 6, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3814), 1, anon_sym_as, - ACTIONS(3867), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110366] = 4, - ACTIONS(3704), 1, + anon_sym_RBRACK, anon_sym_PIPE, - STATE(2121), 1, - aux_sym_union_pattern_repeat1, + [110060] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 3, - anon_sym_RPAREN, + ACTIONS(3735), 4, anon_sym_COMMA, anon_sym_as, - [110382] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [110071] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 5, + ACTIONS(3832), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [110394] = 2, + [110082] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 5, + ACTIONS(3824), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [110406] = 5, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_as, - STATE(2217), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3873), 2, - sym__newline, - anon_sym_SEMI, - [110424] = 2, + anon_sym_RBRACE, + [110093] = 5, + ACTIONS(3794), 1, + anon_sym_RPAREN, + ACTIONS(3892), 1, + sym_identifier, + STATE(2350), 1, + sym_dotted_name, + STATE(2557), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [110436] = 2, + [110110] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 5, + ACTIONS(3826), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [110448] = 6, - ACTIONS(3710), 1, - anon_sym_LBRACE, - ACTIONS(3883), 1, anon_sym_RBRACE, - ACTIONS(3885), 1, - aux_sym_format_specifier_token1, - STATE(2039), 1, - aux_sym_format_specifier_repeat1, - STATE(2465), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [110468] = 2, + [110121] = 5, + ACTIONS(3794), 1, + anon_sym_RPAREN, + ACTIONS(3892), 1, + sym_identifier, + STATE(2350), 1, + sym_dotted_name, + STATE(2557), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [110480] = 2, + [110138] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 5, + ACTIONS(3781), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [110492] = 2, + [110149] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 5, + ACTIONS(3792), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [110504] = 4, - ACTIONS(3891), 1, + anon_sym_RBRACK, anon_sym_PIPE, - STATE(2121), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3472), 3, + [110160] = 5, + ACTIONS(3894), 1, anon_sym_RPAREN, + ACTIONS(3896), 1, anon_sym_COMMA, + ACTIONS(3898), 1, anon_sym_as, - [110520] = 2, + STATE(2324), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 5, + [110177] = 5, + ACTIONS(3900), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [110532] = 6, - ACTIONS(3180), 1, + ACTIONS(3902), 1, anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3894), 1, - anon_sym_else, + ACTIONS(3904), 1, + anon_sym_RBRACK, + STATE(2326), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110552] = 2, + [110194] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 4, + ACTIONS(3838), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110563] = 2, + [110205] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, + ACTIONS(3796), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110574] = 2, + [110216] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, + ACTIONS(3798), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110585] = 2, + [110227] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 4, + ACTIONS(3800), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110596] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3896), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [110607] = 2, + [110238] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3828), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110618] = 2, + [110249] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 4, + ACTIONS(3808), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110629] = 5, + [110260] = 5, ACTIONS(3898), 1, - anon_sym_case, - ACTIONS(3900), 1, - sym__dedent, - STATE(2234), 1, - aux_sym__match_block_repeat1, - STATE(2567), 1, - sym_case_clause, + anon_sym_as, + ACTIONS(3906), 1, + anon_sym_RPAREN, + ACTIONS(3908), 1, + anon_sym_COMMA, + STATE(2336), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110646] = 2, + [110277] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, + ACTIONS(3844), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110657] = 2, + [110288] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3780), 4, + ACTIONS(3808), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110668] = 2, + [110299] = 5, + ACTIONS(3898), 1, + anon_sym_as, + ACTIONS(3910), 1, + anon_sym_RPAREN, + ACTIONS(3912), 1, + anon_sym_COMMA, + STATE(2337), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110679] = 2, + [110316] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 4, + ACTIONS(3818), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110690] = 2, + [110327] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, + ACTIONS(3822), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110701] = 2, + [110338] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, + ACTIONS(3824), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110712] = 2, + [110349] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 4, + ACTIONS(3826), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110723] = 2, + [110360] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, + ACTIONS(3828), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110734] = 2, + [110371] = 4, + ACTIONS(3268), 1, + anon_sym_COMMA, + STATE(2008), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110745] = 2, + ACTIONS(3914), 2, + sym__newline, + anon_sym_SEMI, + [110386] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 4, + ACTIONS(3832), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110756] = 2, + [110397] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 4, + ACTIONS(3838), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110767] = 2, + [110408] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3844), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110778] = 2, + [110419] = 5, + ACTIONS(1563), 1, + anon_sym_LBRACK, + ACTIONS(3916), 1, + anon_sym_LPAREN, + STATE(2590), 1, + sym_parameters, + STATE(2591), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 4, - anon_sym_COMMA, + [110436] = 3, + ACTIONS(3693), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110789] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 4, + ACTIONS(3918), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110800] = 2, + [110449] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, + ACTIONS(3872), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110811] = 2, + [110460] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 4, + ACTIONS(3874), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110822] = 2, + [110471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3876), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110833] = 2, + [110482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110844] = 2, + ACTIONS(3920), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [110493] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + ACTIONS(3878), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110855] = 2, + [110504] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3724), 4, + ACTIONS(3680), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110866] = 2, + [110515] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, + ACTIONS(3777), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110877] = 5, - ACTIONS(3902), 1, - anon_sym_RPAREN, - ACTIONS(3904), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_as, - STATE(2341), 1, - aux_sym_case_clause_repeat1, + [110526] = 5, + ACTIONS(3884), 1, + anon_sym_case, + ACTIONS(3922), 1, + sym__dedent, + STATE(2199), 1, + aux_sym__match_block_repeat1, + STATE(2544), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110894] = 5, - ACTIONS(3908), 1, + [110543] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3781), 4, anon_sym_COMMA, - ACTIONS(3910), 1, anon_sym_as, - ACTIONS(3912), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [110554] = 5, + ACTIONS(3902), 1, + anon_sym_as, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(3926), 1, anon_sym_RBRACK, - STATE(2351), 1, + STATE(2356), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110911] = 4, - ACTIONS(3916), 1, + [110571] = 4, + ACTIONS(3930), 1, anon_sym_COMMA, - STATE(2175), 1, - aux_sym_print_statement_repeat1, + STATE(2153), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 2, + ACTIONS(3928), 2, sym__newline, anon_sym_SEMI, - [110926] = 4, - ACTIONS(3920), 1, - anon_sym_COMMA, - STATE(2155), 1, - aux_sym_print_statement_repeat1, + [110586] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3918), 2, - sym__newline, - anon_sym_SEMI, - [110941] = 4, - ACTIONS(3924), 1, + ACTIONS(3872), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2175), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [110597] = 4, + ACTIONS(3933), 1, + anon_sym_COMMA, + STATE(2008), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 2, + ACTIONS(1441), 2, sym__newline, anon_sym_SEMI, - [110956] = 5, - ACTIONS(3752), 1, - anon_sym_RPAREN, - ACTIONS(3926), 1, - sym_identifier, - STATE(2274), 1, - sym_dotted_name, - STATE(2606), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110973] = 4, - ACTIONS(3263), 1, + [110612] = 5, + ACTIONS(3641), 1, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3695), 1, + anon_sym_DOT, + ACTIONS(3697), 1, + anon_sym_COLON, + ACTIONS(3699), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3928), 2, - sym__newline, - anon_sym_SEMI, - [110988] = 5, - ACTIONS(3906), 1, + [110629] = 5, + ACTIONS(3898), 1, anon_sym_as, - ACTIONS(3930), 1, + ACTIONS(3935), 1, anon_sym_RPAREN, - ACTIONS(3932), 1, + ACTIONS(3937), 1, anon_sym_COMMA, - STATE(2285), 1, + STATE(2444), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111005] = 3, - ACTIONS(3518), 1, + [110646] = 5, + ACTIONS(3902), 1, anon_sym_as, + ACTIONS(3939), 1, + anon_sym_COMMA, + ACTIONS(3941), 1, + anon_sym_RBRACK, + STATE(2445), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 3, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [111018] = 2, + [110663] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 4, + ACTIONS(3874), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [111029] = 5, - ACTIONS(3906), 1, + anon_sym_PIPE, + [110674] = 5, + ACTIONS(3898), 1, anon_sym_as, - ACTIONS(3938), 1, + ACTIONS(3943), 1, anon_sym_RPAREN, - ACTIONS(3940), 1, - anon_sym_COMMA, - STATE(2410), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111046] = 4, - ACTIONS(3942), 1, + ACTIONS(3945), 1, anon_sym_COMMA, - STATE(2164), 1, + STATE(2447), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 2, - anon_sym_if, - anon_sym_COLON, - [111061] = 2, + [110691] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 4, + ACTIONS(3876), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111072] = 2, + [110702] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3878), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111083] = 2, + [110713] = 3, + ACTIONS(3497), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 4, + ACTIONS(3947), 3, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111094] = 2, + anon_sym_if, + anon_sym_COLON, + [110726] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, + ACTIONS(3949), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111105] = 2, + anon_sym_if, + anon_sym_COLON, + [110737] = 5, + ACTIONS(3892), 1, + sym_identifier, + STATE(2222), 1, + sym_dotted_name, + STATE(2475), 1, + sym_aliased_import, + STATE(2681), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3780), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111116] = 2, + [110754] = 5, + ACTIONS(3892), 1, + sym_identifier, + STATE(2222), 1, + sym_dotted_name, + STATE(2475), 1, + sym_aliased_import, + STATE(2738), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 4, + [110771] = 4, + ACTIONS(3951), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111127] = 2, + STATE(2167), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 4, - anon_sym_RPAREN, + ACTIONS(3947), 2, + anon_sym_if, + anon_sym_COLON, + [110786] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3729), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111138] = 2, + anon_sym_RBRACE, + [110797] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, + ACTIONS(3680), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111149] = 4, - ACTIONS(3947), 1, - anon_sym_DOT, - STATE(2173), 1, - aux_sym_import_prefix_repeat1, + [110808] = 4, + ACTIONS(3956), 1, + anon_sym_COMMA, + STATE(2153), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3945), 2, - anon_sym_import, - sym_identifier, - [111164] = 2, + ACTIONS(3954), 2, + sym__newline, + anon_sym_SEMI, + [110823] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, + ACTIONS(3798), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111175] = 4, - ACTIONS(3952), 1, + [110834] = 5, + ACTIONS(3898), 1, + anon_sym_as, + ACTIONS(3958), 1, + anon_sym_RPAREN, + ACTIONS(3960), 1, anon_sym_COMMA, - STATE(2175), 1, - aux_sym_print_statement_repeat1, + STATE(2472), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110851] = 4, + ACTIONS(3962), 1, + anon_sym_COMMA, + STATE(2153), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3950), 2, + ACTIONS(3954), 2, sym__newline, anon_sym_SEMI, - [111190] = 2, + [110866] = 4, + ACTIONS(3966), 1, + anon_sym_COLON, + ACTIONS(3968), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, + ACTIONS(3964), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111201] = 2, + [110881] = 5, + ACTIONS(3426), 1, + sym_identifier, + STATE(1994), 1, + sym_dotted_name, + STATE(2220), 1, + sym_aliased_import, + STATE(2496), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111212] = 2, + [110898] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, + ACTIONS(3832), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111223] = 2, + anon_sym_RBRACE, + [110909] = 5, + ACTIONS(3812), 1, + anon_sym_RPAREN, + ACTIONS(3892), 1, + sym_identifier, + STATE(2350), 1, + sym_dotted_name, + STATE(2557), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111234] = 2, + [110926] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 4, + ACTIONS(3777), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111245] = 2, + [110937] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 4, + ACTIONS(3792), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111256] = 2, + [110948] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3731), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111267] = 2, + [110959] = 5, + ACTIONS(3695), 1, + anon_sym_DOT, + ACTIONS(3697), 1, + anon_sym_COLON, + ACTIONS(3699), 1, + anon_sym_PIPE, + ACTIONS(3970), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111278] = 3, + [110976] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3955), 2, + ACTIONS(3844), 4, anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - [111291] = 2, + [110987] = 4, + ACTIONS(3974), 1, + anon_sym_COMMA, + STATE(2183), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111302] = 2, + ACTIONS(3972), 2, + sym__newline, + anon_sym_SEMI, + [111002] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, + ACTIONS(3800), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111313] = 2, + [111013] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 4, + ACTIONS(3872), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111324] = 2, + anon_sym_RBRACE, + [111024] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3874), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111335] = 2, + anon_sym_RBRACE, + [111035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + ACTIONS(3229), 2, + anon_sym_COLON, anon_sym_PIPE, - [111346] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(3957), 1, - anon_sym_RPAREN, - ACTIONS(3959), 1, + ACTIONS(3977), 2, anon_sym_COMMA, - STATE(2289), 1, - aux_sym_case_clause_repeat1, + anon_sym_RBRACE, + [111048] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111363] = 5, - ACTIONS(3910), 1, - anon_sym_as, - ACTIONS(3961), 1, + ACTIONS(3876), 4, anon_sym_COMMA, - ACTIONS(3963), 1, - anon_sym_RBRACK, - STATE(2290), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111059] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111380] = 2, + ACTIONS(3517), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [111070] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + ACTIONS(3878), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111391] = 2, + anon_sym_RBRACE, + [111081] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3724), 4, + ACTIONS(3680), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111402] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(3965), 1, - anon_sym_RPAREN, - ACTIONS(3967), 1, + anon_sym_RBRACE, + [111092] = 4, + ACTIONS(3890), 1, anon_sym_COMMA, - STATE(2294), 1, - aux_sym_case_clause_repeat1, + STATE(2214), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111419] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2527), 1, - sym_parameters, - STATE(2553), 1, - sym_type_parameter, + ACTIONS(3979), 2, + sym__newline, + anon_sym_SEMI, + [111107] = 4, + ACTIONS(3890), 1, + anon_sym_COMMA, + STATE(2214), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111436] = 2, + ACTIONS(3981), 2, + sym__newline, + anon_sym_SEMI, + [111122] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 4, + ACTIONS(3792), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111447] = 4, - ACTIONS(3973), 1, + [111133] = 4, + ACTIONS(3985), 1, anon_sym_COMMA, - STATE(2238), 1, - aux_sym_global_statement_repeat1, + STATE(2183), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 2, + ACTIONS(3983), 2, sym__newline, anon_sym_SEMI, - [111462] = 5, - ACTIONS(3752), 1, - anon_sym_RPAREN, - ACTIONS(3926), 1, - sym_identifier, - STATE(2274), 1, - sym_dotted_name, - STATE(2606), 1, - sym_aliased_import, + [111148] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111479] = 4, - ACTIONS(3973), 1, + ACTIONS(3796), 4, anon_sym_COMMA, - STATE(2239), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111159] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3975), 2, - sym__newline, - anon_sym_SEMI, - [111494] = 4, - ACTIONS(3977), 1, + ACTIONS(3798), 4, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111170] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1445), 2, - sym__newline, - anon_sym_SEMI, - [111509] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2600), 1, - sym_parameters, - STATE(2602), 1, - sym_type_parameter, + ACTIONS(3800), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111181] = 5, + ACTIONS(3987), 1, + anon_sym_case, + ACTIONS(3990), 1, + sym__dedent, + STATE(2199), 1, + aux_sym__match_block_repeat1, + STATE(2544), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111526] = 5, - ACTIONS(3906), 1, + [111198] = 5, + ACTIONS(3898), 1, anon_sym_as, - ACTIONS(3979), 1, + ACTIONS(3992), 1, anon_sym_RPAREN, - ACTIONS(3981), 1, + ACTIONS(3994), 1, anon_sym_COMMA, - STATE(2331), 1, + STATE(2271), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111543] = 5, - ACTIONS(3910), 1, + [111215] = 5, + ACTIONS(3902), 1, anon_sym_as, - ACTIONS(3983), 1, + ACTIONS(3996), 1, anon_sym_COMMA, - ACTIONS(3985), 1, + ACTIONS(3998), 1, anon_sym_RBRACK, - STATE(2333), 1, + STATE(2272), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111560] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(3987), 1, - anon_sym_RPAREN, - ACTIONS(3989), 1, - anon_sym_COMMA, - STATE(2340), 1, - aux_sym_case_clause_repeat1, + [111232] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111577] = 5, - ACTIONS(3681), 1, + ACTIONS(3733), 4, anon_sym_COMMA, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_COLON, - ACTIONS(3742), 1, + anon_sym_as, anon_sym_PIPE, + anon_sym_RBRACE, + [111243] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111594] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3796), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111605] = 5, - ACTIONS(3898), 1, - anon_sym_case, - ACTIONS(3991), 1, - sym__dedent, - STATE(2234), 1, - aux_sym__match_block_repeat1, - STATE(2567), 1, - sym_case_clause, + [111254] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111622] = 2, + ACTIONS(3735), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111265] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 4, - anon_sym_RPAREN, + ACTIONS(3808), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111633] = 4, - ACTIONS(3263), 1, + anon_sym_RBRACE, + [111276] = 4, + ACTIONS(4002), 1, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + STATE(2183), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 2, + ACTIONS(4000), 2, sym__newline, anon_sym_SEMI, - [111648] = 2, + [111291] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, - anon_sym_RPAREN, + ACTIONS(3777), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111659] = 2, + anon_sym_RBRACE, + [111302] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3780), 4, + ACTIONS(3729), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111670] = 2, + [111313] = 4, + ACTIONS(4006), 1, + anon_sym_DOT, + STATE(2209), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 4, + ACTIONS(4004), 2, + anon_sym_import, + sym_identifier, + [111328] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3731), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111681] = 2, + [111339] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, + ACTIONS(3733), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111692] = 5, - ACTIONS(3873), 1, - anon_sym_RPAREN, - ACTIONS(3995), 1, - anon_sym_COMMA, - ACTIONS(3997), 1, - anon_sym_as, - STATE(2454), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111709] = 5, - ACTIONS(3898), 1, - anon_sym_case, - ACTIONS(3999), 1, - sym__dedent, - STATE(2207), 1, - aux_sym__match_block_repeat1, - STATE(2567), 1, - sym_case_clause, + [111350] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111726] = 4, - ACTIONS(4003), 1, + ACTIONS(3735), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2230), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4001), 2, - sym__newline, - anon_sym_SEMI, - [111741] = 4, - ACTIONS(4005), 1, + anon_sym_as, + anon_sym_PIPE, + [111361] = 4, + ACTIONS(3268), 1, anon_sym_COMMA, - STATE(2230), 1, - aux_sym__import_list_repeat1, + STATE(2008), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4001), 2, + ACTIONS(4009), 2, sym__newline, anon_sym_SEMI, - [111756] = 4, - ACTIONS(3875), 1, + [111376] = 4, + ACTIONS(4013), 1, anon_sym_COMMA, - STATE(2216), 1, - aux_sym__import_list_repeat1, + STATE(2214), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3873), 2, + ACTIONS(4011), 2, sym__newline, anon_sym_SEMI, - [111771] = 2, + [111391] = 5, + ACTIONS(3703), 1, + anon_sym_COLON, + ACTIONS(4016), 1, + anon_sym_RBRACE, + ACTIONS(4018), 1, + sym_type_conversion, + STATE(2757), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [111408] = 5, + ACTIONS(3898), 1, anon_sym_as, - anon_sym_PIPE, - [111782] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3861), 4, + ACTIONS(4020), 1, anon_sym_RPAREN, + ACTIONS(4022), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111793] = 2, + STATE(2281), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111804] = 2, + [111425] = 5, + ACTIONS(1563), 1, + anon_sym_LBRACK, + ACTIONS(3916), 1, + anon_sym_LPAREN, + STATE(2540), 1, + sym_parameters, + STATE(2546), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111815] = 2, + [111442] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 4, + ACTIONS(3818), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111826] = 5, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4007), 1, - anon_sym_RBRACE, - ACTIONS(4009), 1, - sym_type_conversion, - STATE(2744), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111843] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3524), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [111854] = 2, + [111453] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3822), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111865] = 4, - ACTIONS(4013), 1, - anon_sym_COLON, - ACTIONS(4015), 1, - anon_sym_EQ, + [111464] = 4, + ACTIONS(3691), 1, + anon_sym_COMMA, + STATE(2170), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [111880] = 2, + ACTIONS(3689), 2, + sym__newline, + anon_sym_SEMI, + [111479] = 5, + ACTIONS(3884), 1, + anon_sym_case, + ACTIONS(4024), 1, + sym__dedent, + STATE(2150), 1, + aux_sym__match_block_repeat1, + STATE(2544), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 4, + [111496] = 5, + ACTIONS(3689), 1, anon_sym_RPAREN, + ACTIONS(4026), 1, anon_sym_COMMA, + ACTIONS(4028), 1, anon_sym_as, - anon_sym_PIPE, - [111891] = 3, - ACTIONS(3877), 1, - anon_sym_as, + STATE(2428), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [111904] = 4, - ACTIONS(4021), 1, - anon_sym_COMMA, - STATE(2230), 1, - aux_sym__import_list_repeat1, + [111513] = 5, + ACTIONS(3703), 1, + anon_sym_COLON, + ACTIONS(4030), 1, + anon_sym_RBRACE, + ACTIONS(4032), 1, + sym_type_conversion, + STATE(2632), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4019), 2, - sym__newline, - anon_sym_SEMI, - [111919] = 5, - ACTIONS(3926), 1, - sym_identifier, - STATE(2214), 1, - sym_dotted_name, - STATE(2372), 1, - sym_aliased_import, - STATE(2706), 1, - sym__import_list, + [111530] = 5, + ACTIONS(1563), 1, + anon_sym_LBRACK, + ACTIONS(3916), 1, + anon_sym_LPAREN, + STATE(2555), 1, + sym_parameters, + STATE(2587), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111936] = 5, - ACTIONS(3926), 1, - sym_identifier, - STATE(2214), 1, - sym_dotted_name, - STATE(2372), 1, - sym_aliased_import, - STATE(2730), 1, - sym__import_list, + [111547] = 5, + ACTIONS(1563), 1, + anon_sym_LBRACK, + ACTIONS(3916), 1, + anon_sym_LPAREN, + STATE(2556), 1, + sym_parameters, + STATE(2588), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111953] = 2, + [111564] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, + ACTIONS(3824), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111964] = 5, - ACTIONS(4024), 1, + [111575] = 5, + ACTIONS(3884), 1, anon_sym_case, - ACTIONS(4027), 1, + ACTIONS(4034), 1, sym__dedent, - STATE(2234), 1, + STATE(2109), 1, aux_sym__match_block_repeat1, - STATE(2567), 1, + STATE(2544), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111981] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3732), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111992] = 2, + [111592] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, - anon_sym_RPAREN, + ACTIONS(3818), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [112003] = 5, - ACTIONS(3766), 1, - anon_sym_RPAREN, - ACTIONS(3926), 1, - sym_identifier, - STATE(2274), 1, - sym_dotted_name, - STATE(2606), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112020] = 4, - ACTIONS(3973), 1, + anon_sym_RBRACE, + [111603] = 4, + ACTIONS(4038), 1, anon_sym_COMMA, - STATE(2245), 1, - aux_sym_global_statement_repeat1, + STATE(2195), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4029), 2, + ACTIONS(4036), 2, sym__newline, anon_sym_SEMI, - [112035] = 4, - ACTIONS(3973), 1, + [111618] = 4, + ACTIONS(3890), 1, anon_sym_COMMA, - STATE(2245), 1, + STATE(2192), 1, aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4031), 2, + ACTIONS(4040), 2, sym__newline, anon_sym_SEMI, - [112050] = 2, + [111633] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, - anon_sym_RPAREN, + ACTIONS(3822), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [112061] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(4033), 1, - anon_sym_RPAREN, - ACTIONS(4035), 1, - anon_sym_COMMA, - STATE(2255), 1, - aux_sym_case_clause_repeat1, + anon_sym_RBRACE, + [111644] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112078] = 2, + ACTIONS(3826), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [111655] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + ACTIONS(3828), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [112089] = 2, + [111666] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3724), 4, + ACTIONS(3781), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [112100] = 5, - ACTIONS(3910), 1, - anon_sym_as, - ACTIONS(4037), 1, + [111677] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3729), 4, anon_sym_COMMA, - ACTIONS(4039), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(2266), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [111688] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112117] = 4, - ACTIONS(4043), 1, + ACTIONS(3838), 4, anon_sym_COMMA, - STATE(2245), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111699] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4041), 2, + ACTIONS(3918), 3, sym__newline, anon_sym_SEMI, - [112132] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2585), 1, - sym_parameters, - STATE(2607), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112149] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2586), 1, - sym_parameters, - STATE(2609), 1, - sym_type_parameter, + anon_sym_COMMA, + [111709] = 4, + ACTIONS(4042), 1, + anon_sym_COMMA, + ACTIONS(4044), 1, + anon_sym_COLON, + STATE(2305), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112166] = 5, - ACTIONS(3736), 1, + [111723] = 4, + ACTIONS(3695), 1, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_COLON, - ACTIONS(3742), 1, + ACTIONS(3699), 1, anon_sym_PIPE, ACTIONS(4046), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112183] = 5, - ACTIONS(3756), 1, anon_sym_COLON, - ACTIONS(4048), 1, - anon_sym_RBRACE, - ACTIONS(4050), 1, - sym_type_conversion, - STATE(2720), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112200] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2114), 1, - sym_dotted_name, - STATE(2218), 1, - sym_aliased_import, - STATE(2522), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112217] = 5, - ACTIONS(3898), 1, - anon_sym_case, - ACTIONS(4052), 1, - sym__dedent, - STATE(2131), 1, - aux_sym__match_block_repeat1, - STATE(2567), 1, - sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112234] = 4, - ACTIONS(4056), 1, - anon_sym_DOT, - STATE(2173), 1, - aux_sym_import_prefix_repeat1, + [111737] = 3, + ACTIONS(4048), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4054), 2, - anon_sym_import, - sym_identifier, - [112249] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(3964), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112263] = 4, - ACTIONS(3433), 1, + [111749] = 4, + ACTIONS(3400), 1, anon_sym_COMMA, - ACTIONS(3435), 1, + ACTIONS(3402), 1, anon_sym_RBRACE, - STATE(2261), 1, + STATE(2245), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112277] = 4, - ACTIONS(2672), 1, - anon_sym_RPAREN, - ACTIONS(4060), 1, - anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112291] = 4, - ACTIONS(3391), 1, - sym_identifier, - STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112305] = 4, - ACTIONS(637), 1, + [111763] = 4, + ACTIONS(621), 1, sym__newline, - ACTIONS(4062), 1, + ACTIONS(4050), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2321), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112319] = 4, - ACTIONS(3056), 1, + [111777] = 4, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(4064), 1, + ACTIONS(4052), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2322), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112333] = 4, - ACTIONS(3056), 1, + [111791] = 4, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(4066), 1, + ACTIONS(4054), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2322), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112347] = 4, - ACTIONS(3528), 1, - anon_sym_RPAREN, - ACTIONS(4068), 1, - anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112361] = 4, - ACTIONS(1357), 1, + [111805] = 4, + ACTIONS(1327), 1, anon_sym_RBRACE, - ACTIONS(4071), 1, + ACTIONS(4056), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2427), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112375] = 4, - ACTIONS(4073), 1, - anon_sym_COMMA, - ACTIONS(4075), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112389] = 4, - ACTIONS(1339), 1, - anon_sym_RBRACE, - ACTIONS(4077), 1, + [111819] = 4, + ACTIONS(3045), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4058), 1, + anon_sym_RPAREN, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112403] = 4, - ACTIONS(3079), 1, + [111833] = 4, + ACTIONS(3070), 1, anon_sym_RPAREN, - ACTIONS(3081), 1, + ACTIONS(3072), 1, anon_sym_COMMA, - STATE(2273), 1, + STATE(2255), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112417] = 4, - ACTIONS(4079), 1, + [111847] = 4, + ACTIONS(4060), 1, anon_sym_RPAREN, - ACTIONS(4081), 1, + ACTIONS(4062), 1, anon_sym_COMMA, - STATE(2275), 1, + STATE(2257), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112431] = 4, - ACTIONS(2674), 1, - anon_sym_RBRACK, - ACTIONS(4083), 1, - anon_sym_COMMA, - STATE(2481), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112445] = 4, - ACTIONS(3241), 1, - anon_sym_COMMA, - ACTIONS(3245), 1, - anon_sym_RBRACK, - STATE(2277), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112459] = 4, - ACTIONS(4085), 1, + [111861] = 4, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(4087), 1, - anon_sym_COLON, - STATE(2466), 1, - aux_sym_match_statement_repeat1, + ACTIONS(4064), 1, + anon_sym_RPAREN, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112473] = 4, - ACTIONS(3056), 1, + [111875] = 4, + ACTIONS(3314), 1, anon_sym_COMMA, - ACTIONS(4089), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3316), 1, + anon_sym_RBRACK, + STATE(2259), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112487] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4091), 1, + [111889] = 4, + ACTIONS(4066), 1, + sym__newline, + ACTIONS(4068), 1, + sym__indent, + STATE(826), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111903] = 4, + ACTIONS(3204), 1, anon_sym_COLON, + ACTIONS(4070), 1, + anon_sym_COMMA, + STATE(2252), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112501] = 4, - ACTIONS(3056), 1, + [111917] = 4, + ACTIONS(3542), 1, + anon_sym_RBRACE, + ACTIONS(4073), 1, anon_sym_COMMA, - ACTIONS(4093), 1, - anon_sym_RPAREN, - STATE(2382), 1, + STATE(2253), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112515] = 3, - ACTIONS(4097), 1, - anon_sym_as, + [111931] = 4, + ACTIONS(3262), 1, + anon_sym_COMMA, + ACTIONS(3264), 1, + anon_sym_RBRACK, + STATE(2468), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [112527] = 4, - ACTIONS(1201), 1, + [111945] = 4, + ACTIONS(1167), 1, anon_sym_RPAREN, - ACTIONS(4099), 1, + ACTIONS(4076), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112541] = 3, - ACTIONS(3997), 1, - anon_sym_as, + [111959] = 3, + ACTIONS(3968), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 2, + ACTIONS(3964), 2, anon_sym_RPAREN, anon_sym_COMMA, - [112553] = 4, - ACTIONS(1211), 1, + [111971] = 4, + ACTIONS(1169), 1, anon_sym_RPAREN, - ACTIONS(4101), 1, + ACTIONS(4078), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112567] = 4, - ACTIONS(4103), 1, + [111985] = 4, + ACTIONS(4080), 1, anon_sym_COMMA, - ACTIONS(4105), 1, + ACTIONS(4082), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112581] = 4, - ACTIONS(4107), 1, + [111999] = 4, + ACTIONS(4084), 1, anon_sym_COMMA, - ACTIONS(4109), 1, + ACTIONS(4086), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112595] = 4, - ACTIONS(4111), 1, + [112013] = 4, + ACTIONS(4088), 1, anon_sym_COMMA, - ACTIONS(4113), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4090), 1, + anon_sym_COLON, + STATE(2483), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112609] = 4, - ACTIONS(4073), 1, + [112027] = 4, + ACTIONS(1025), 1, + anon_sym_RBRACK, + ACTIONS(4092), 1, anon_sym_COMMA, - ACTIONS(4115), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, + STATE(2307), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112623] = 4, - ACTIONS(1045), 1, - anon_sym_RBRACK, - ACTIONS(4117), 1, + [112041] = 4, + ACTIONS(2951), 1, + anon_sym_RPAREN, + ACTIONS(4094), 1, anon_sym_COMMA, - STATE(2316), 1, - aux_sym_type_parameter_repeat1, + STATE(2264), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112637] = 4, - ACTIONS(4119), 1, - anon_sym_COMMA, - ACTIONS(4122), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + [112055] = 3, + ACTIONS(4096), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112651] = 4, - ACTIONS(4124), 1, + ACTIONS(3964), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4126), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + [112067] = 4, + ACTIONS(4098), 1, + anon_sym_RPAREN, + ACTIONS(4100), 1, + anon_sym_COMMA, + STATE(2264), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112665] = 4, - ACTIONS(4128), 1, - anon_sym_COMMA, - ACTIONS(4131), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + [112081] = 3, + ACTIONS(3200), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112679] = 4, - ACTIONS(1025), 1, - anon_sym_RBRACK, - ACTIONS(4133), 1, - anon_sym_COMMA, - STATE(2316), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(3198), 2, + sym__newline, + anon_sym_SEMI, + [112093] = 3, + ACTIONS(1624), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112693] = 4, - ACTIONS(2702), 1, - anon_sym_RPAREN, - ACTIONS(4135), 1, + ACTIONS(1622), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112105] = 4, + ACTIONS(4103), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4105), 1, + anon_sym_COLON, + STATE(2397), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112707] = 4, - ACTIONS(4137), 1, + [112119] = 4, + ACTIONS(4107), 1, anon_sym_COMMA, - ACTIONS(4139), 1, + ACTIONS(4109), 1, anon_sym_RBRACE, - STATE(2360), 1, + STATE(2273), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112721] = 4, - ACTIONS(4141), 1, - anon_sym_COMMA, - ACTIONS(4143), 1, - anon_sym_RBRACE, - STATE(2291), 1, - aux_sym_dict_pattern_repeat1, + [112133] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112735] = 4, - ACTIONS(1215), 1, - anon_sym_RPAREN, - ACTIONS(4145), 1, + ACTIONS(3949), 3, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + anon_sym_as, + anon_sym_RBRACE, + [112143] = 4, + ACTIONS(1299), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, + anon_sym_COMMA, + STATE(2427), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112749] = 4, - ACTIONS(2706), 1, + [112157] = 4, + ACTIONS(2668), 1, anon_sym_RPAREN, - ACTIONS(4147), 1, + ACTIONS(4113), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2294), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112763] = 4, - ACTIONS(2708), 1, + [112171] = 4, + ACTIONS(2672), 1, anon_sym_RBRACK, - ACTIONS(4149), 1, + ACTIONS(4115), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2333), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112777] = 4, - ACTIONS(4151), 1, + [112185] = 4, + ACTIONS(4117), 1, anon_sym_COMMA, - ACTIONS(4153), 1, + ACTIONS(4119), 1, anon_sym_RBRACE, - STATE(2281), 1, + STATE(2439), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112791] = 4, - ACTIONS(4155), 1, + [112199] = 4, + ACTIONS(2971), 1, anon_sym_COMMA, - ACTIONS(4157), 1, + ACTIONS(2983), 1, anon_sym_RBRACE, - STATE(2281), 1, + STATE(2410), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112213] = 4, + ACTIONS(4121), 1, + anon_sym_COMMA, + ACTIONS(4123), 1, + anon_sym_RBRACE, + STATE(2439), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112805] = 4, - ACTIONS(4073), 1, + [112227] = 4, + ACTIONS(2716), 1, + sym_identifier, + ACTIONS(4125), 1, + anon_sym_import, + STATE(2674), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112241] = 4, + ACTIONS(2873), 1, + anon_sym_in, + ACTIONS(4127), 1, anon_sym_COMMA, - ACTIONS(4159), 1, + STATE(2277), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112255] = 3, + ACTIONS(3661), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3663), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112267] = 4, + ACTIONS(4130), 1, + anon_sym_COMMA, + ACTIONS(4132), 1, anon_sym_in, - STATE(2486), 1, + STATE(2489), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112819] = 4, - ACTIONS(2622), 1, + [112281] = 3, + ACTIONS(3621), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3623), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112293] = 4, + ACTIONS(2638), 1, anon_sym_RPAREN, - ACTIONS(4161), 1, + ACTIONS(4134), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2294), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112833] = 2, + [112307] = 3, + ACTIONS(3625), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3627), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112319] = 4, + ACTIONS(3892), 1, + sym_identifier, + STATE(2350), 1, + sym_dotted_name, + STATE(2557), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [112843] = 4, - ACTIONS(1465), 1, + [112333] = 4, + ACTIONS(3058), 1, anon_sym_RPAREN, - ACTIONS(4163), 1, + ACTIONS(3060), 1, anon_sym_COMMA, - STATE(2437), 1, - aux_sym_with_clause_repeat1, + STATE(2325), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112857] = 2, + [112347] = 4, + ACTIONS(4136), 1, + anon_sym_RPAREN, + ACTIONS(4138), 1, + anon_sym_COMMA, + STATE(2329), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [112867] = 4, - ACTIONS(1299), 1, - anon_sym_COLON, - ACTIONS(4165), 1, + [112361] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3517), 3, anon_sym_COMMA, - STATE(2323), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + [112371] = 3, + ACTIONS(1646), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112881] = 4, - ACTIONS(4167), 1, + ACTIONS(1644), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112383] = 4, + ACTIONS(1309), 1, + anon_sym_RBRACE, + ACTIONS(4140), 1, anon_sym_COMMA, - ACTIONS(4169), 1, - anon_sym_COLON, - STATE(2415), 1, - aux_sym__parameters_repeat1, + STATE(2427), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112397] = 3, + ACTIONS(1650), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112895] = 4, - ACTIONS(4171), 1, + ACTIONS(1648), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112409] = 4, + ACTIONS(4142), 1, anon_sym_SEMI, - ACTIONS(4173), 1, + ACTIONS(4144), 1, sym__newline, - STATE(2307), 1, + STATE(2297), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112909] = 4, - ACTIONS(4175), 1, - anon_sym_COMMA, - ACTIONS(4178), 1, + [112423] = 4, + ACTIONS(3703), 1, + anon_sym_COLON, + ACTIONS(4146), 1, anon_sym_RBRACE, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + STATE(2773), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112923] = 2, + [112437] = 4, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3143), 1, + anon_sym_RPAREN, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [112933] = 4, - ACTIONS(1217), 1, - anon_sym_RPAREN, - ACTIONS(4180), 1, + [112451] = 4, + ACTIONS(3324), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3326), 1, + anon_sym_RBRACK, + STATE(2335), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112947] = 4, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3087), 1, + [112465] = 4, + ACTIONS(3947), 1, anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4148), 1, + anon_sym_COMMA, + STATE(2294), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112961] = 4, - ACTIONS(4182), 1, - anon_sym_SEMI, - ACTIONS(4184), 1, - sym__newline, - STATE(2431), 1, - aux_sym__simple_statements_repeat1, + [112479] = 4, + ACTIONS(3703), 1, + anon_sym_COLON, + ACTIONS(4151), 1, + anon_sym_RBRACE, + STATE(2635), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112975] = 4, - ACTIONS(3418), 1, + [112493] = 4, + ACTIONS(3359), 1, anon_sym_COMMA, - ACTIONS(3420), 1, + ACTIONS(3361), 1, anon_sym_RBRACE, - STATE(2310), 1, + STATE(2298), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112989] = 4, - ACTIONS(641), 1, + [112507] = 4, + ACTIONS(629), 1, sym__newline, - ACTIONS(4186), 1, + ACTIONS(4153), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2321), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113003] = 3, - ACTIONS(3618), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3620), 2, - anon_sym_LBRACE, + [112521] = 4, + ACTIONS(1335), 1, anon_sym_RBRACE, - [113015] = 4, - ACTIONS(3089), 1, - anon_sym_RPAREN, - ACTIONS(3091), 1, + ACTIONS(4155), 1, anon_sym_COMMA, - STATE(2396), 1, - aux_sym_argument_list_repeat1, + STATE(2427), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113029] = 4, - ACTIONS(1333), 1, - anon_sym_RBRACE, - ACTIONS(4188), 1, - anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + [112535] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113043] = 4, - ACTIONS(4190), 1, + ACTIONS(1696), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [112545] = 4, + ACTIONS(4066), 1, sym__newline, - ACTIONS(4192), 1, + ACTIONS(4068), 1, sym__indent, - STATE(822), 1, + STATE(784), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113057] = 4, - ACTIONS(3028), 1, + [112559] = 4, + ACTIONS(3082), 1, anon_sym_RPAREN, - ACTIONS(3030), 1, + ACTIONS(3084), 1, anon_sym_COMMA, - STATE(2318), 1, + STATE(2309), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113071] = 4, - ACTIONS(4194), 1, + [112573] = 4, + ACTIONS(4157), 1, anon_sym_RPAREN, - ACTIONS(4196), 1, + ACTIONS(4159), 1, anon_sym_COMMA, - STATE(2319), 1, + STATE(2310), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113085] = 4, - ACTIONS(3307), 1, + [112587] = 4, + ACTIONS(4066), 1, + sym__newline, + ACTIONS(4068), 1, + sym__indent, + STATE(804), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112601] = 4, + ACTIONS(3300), 1, anon_sym_COMMA, - ACTIONS(3309), 1, + ACTIONS(3302), 1, anon_sym_RBRACK, - STATE(2322), 1, + STATE(2313), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113099] = 4, - ACTIONS(4198), 1, - anon_sym_RPAREN, - ACTIONS(4200), 1, + [112615] = 4, + ACTIONS(2951), 1, + anon_sym_COLON, + ACTIONS(4161), 1, anon_sym_COMMA, - STATE(2401), 1, - aux_sym_argument_list_repeat1, + STATE(2364), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112629] = 3, + ACTIONS(4165), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113113] = 4, - ACTIONS(3839), 1, + ACTIONS(4163), 2, + sym__newline, + anon_sym_SEMI, + [112641] = 4, + ACTIONS(3718), 1, anon_sym_RBRACK, - ACTIONS(4202), 1, + ACTIONS(4167), 1, anon_sym_COMMA, - STATE(2316), 1, + STATE(2307), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113127] = 4, - ACTIONS(4205), 1, - anon_sym_RPAREN, - ACTIONS(4207), 1, - anon_sym_COMMA, - STATE(2317), 1, - aux_sym__parameters_repeat1, + [112655] = 4, + ACTIONS(4170), 1, + sym__newline, + ACTIONS(4172), 1, + sym__indent, + STATE(714), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113141] = 4, - ACTIONS(1255), 1, + [112669] = 4, + ACTIONS(1183), 1, anon_sym_RPAREN, - ACTIONS(4210), 1, + ACTIONS(4174), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113155] = 4, - ACTIONS(1257), 1, + [112683] = 4, + ACTIONS(1185), 1, anon_sym_RPAREN, - ACTIONS(4212), 1, + ACTIONS(4176), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113169] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4214), 1, - anon_sym_COLON, + [112697] = 4, + ACTIONS(3426), 1, + sym_identifier, + STATE(2142), 1, + sym_dotted_name, + STATE(2237), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113183] = 4, - ACTIONS(4216), 1, + [112711] = 4, + ACTIONS(4178), 1, anon_sym_COMMA, - ACTIONS(4218), 1, + ACTIONS(4180), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113197] = 4, - ACTIONS(4220), 1, + [112725] = 4, + ACTIONS(4182), 1, anon_sym_COMMA, - ACTIONS(4222), 1, + ACTIONS(4184), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113211] = 4, - ACTIONS(3232), 1, - anon_sym_COLON, - ACTIONS(4224), 1, + [112739] = 4, + ACTIONS(3414), 1, anon_sym_COMMA, - STATE(2323), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3416), 1, + anon_sym_RBRACE, + STATE(2288), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113225] = 4, - ACTIONS(1033), 1, + [112753] = 4, + ACTIONS(991), 1, anon_sym_RBRACK, - ACTIONS(4227), 1, + ACTIONS(4186), 1, anon_sym_COMMA, - STATE(2316), 1, + STATE(2307), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113239] = 3, - ACTIONS(3218), 1, - anon_sym_from, + [112767] = 4, + ACTIONS(1001), 1, + anon_sym_RBRACK, + ACTIONS(4188), 1, + anon_sym_COMMA, + STATE(2307), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3216), 2, - sym__newline, - anon_sym_SEMI, - [113251] = 4, - ACTIONS(4229), 1, - anon_sym_RPAREN, - ACTIONS(4231), 1, + [112781] = 4, + ACTIONS(4190), 1, anon_sym_COMMA, - STATE(2296), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4192), 1, + anon_sym_COLON, + STATE(2483), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113265] = 3, - ACTIONS(1724), 1, - anon_sym_except, + [112795] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 2, - anon_sym_except_STAR, - anon_sym_finally, - [113277] = 4, - ACTIONS(4233), 1, + ACTIONS(3517), 3, anon_sym_COMMA, - ACTIONS(4235), 1, + anon_sym_as, anon_sym_RBRACE, - STATE(2334), 1, - aux_sym_dict_pattern_repeat1, + [112805] = 4, + ACTIONS(4130), 1, + anon_sym_COMMA, + ACTIONS(4194), 1, + anon_sym_in, + STATE(2489), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112819] = 4, + ACTIONS(3695), 1, + anon_sym_DOT, + ACTIONS(3699), 1, + anon_sym_PIPE, + ACTIONS(4196), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113291] = 4, - ACTIONS(4237), 1, + [112833] = 4, + ACTIONS(4198), 1, + anon_sym_SEMI, + ACTIONS(4201), 1, sym__newline, - ACTIONS(4239), 1, - sym__indent, - STATE(784), 1, - sym__match_block, + STATE(2321), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112847] = 4, + ACTIONS(1263), 1, + anon_sym_RPAREN, + ACTIONS(4203), 1, + anon_sym_COMMA, + STATE(2405), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113305] = 4, + [112861] = 4, ACTIONS(4205), 1, - anon_sym_COLON, - ACTIONS(4241), 1, anon_sym_COMMA, - STATE(2330), 1, - aux_sym__parameters_repeat1, + ACTIONS(4207), 1, + anon_sym_RBRACE, + STATE(2328), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113319] = 4, - ACTIONS(2654), 1, + [112875] = 4, + ACTIONS(2648), 1, anon_sym_RPAREN, - ACTIONS(4244), 1, + ACTIONS(4209), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2294), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113333] = 4, - ACTIONS(4237), 1, - sym__newline, - ACTIONS(4239), 1, - sym__indent, - STATE(794), 1, - sym__match_block, + [112889] = 4, + ACTIONS(1175), 1, + anon_sym_RPAREN, + ACTIONS(4211), 1, + anon_sym_COMMA, + STATE(2419), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113347] = 4, - ACTIONS(2656), 1, + [112903] = 4, + ACTIONS(2650), 1, anon_sym_RBRACK, - ACTIONS(4246), 1, + ACTIONS(4213), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2333), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113361] = 4, - ACTIONS(4248), 1, + [112917] = 4, + ACTIONS(2002), 1, + anon_sym_RPAREN, + ACTIONS(4215), 1, anon_sym_COMMA, - ACTIONS(4250), 1, + STATE(2376), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112931] = 4, + ACTIONS(4217), 1, + anon_sym_COMMA, + ACTIONS(4219), 1, anon_sym_RBRACE, - STATE(2281), 1, + STATE(2439), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113375] = 4, - ACTIONS(4252), 1, + [112945] = 4, + ACTIONS(1177), 1, + anon_sym_RPAREN, + ACTIONS(4221), 1, anon_sym_COMMA, - ACTIONS(4254), 1, + STATE(2419), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112959] = 4, + ACTIONS(4223), 1, + anon_sym_COMMA, + ACTIONS(4225), 1, anon_sym_RBRACE, - STATE(2281), 1, + STATE(2439), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113389] = 3, - ACTIONS(3640), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [112973] = 3, + ACTIONS(3902), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3642), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113401] = 3, - ACTIONS(3677), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + ACTIONS(3947), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [112985] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3949), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [112995] = 4, + ACTIONS(3947), 1, + anon_sym_RBRACK, + ACTIONS(4227), 1, + anon_sym_COMMA, + STATE(2333), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3679), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113413] = 4, - ACTIONS(1291), 1, - anon_sym_RBRACE, - ACTIONS(4256), 1, + [113009] = 4, + ACTIONS(4230), 1, anon_sym_COMMA, - STATE(2425), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4232), 1, + anon_sym_RBRACK, + STATE(2443), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113427] = 3, - ACTIONS(1718), 1, - anon_sym_except, + [113023] = 4, + ACTIONS(4234), 1, + anon_sym_COMMA, + ACTIONS(4236), 1, + anon_sym_RBRACK, + STATE(2443), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 2, - anon_sym_except_STAR, - anon_sym_finally, - [113439] = 4, - ACTIONS(2662), 1, + [113037] = 4, + ACTIONS(2660), 1, anon_sym_RPAREN, - ACTIONS(4258), 1, + ACTIONS(4238), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2294), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113453] = 4, - ACTIONS(2678), 1, + [113051] = 4, + ACTIONS(2610), 1, anon_sym_RPAREN, - ACTIONS(4260), 1, + ACTIONS(4240), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2294), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113467] = 3, - ACTIONS(3476), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3478), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113479] = 3, - ACTIONS(4262), 1, - anon_sym_EQ, + [113065] = 4, + ACTIONS(3695), 1, + anon_sym_DOT, + ACTIONS(3699), 1, + anon_sym_PIPE, + ACTIONS(4242), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_COMMA, + [113079] = 4, + ACTIONS(3703), 1, anon_sym_COLON, - [113491] = 3, - ACTIONS(4266), 1, - anon_sym_in, + ACTIONS(4244), 1, + anon_sym_RBRACE, + STATE(2774), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4264), 2, - sym__newline, - anon_sym_SEMI, - [113503] = 4, - ACTIONS(1455), 1, - anon_sym_COLON, - ACTIONS(4268), 1, - anon_sym_COMMA, - STATE(2387), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, + [113093] = 3, + ACTIONS(3509), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [113517] = 4, - ACTIONS(4270), 1, + ACTIONS(3511), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113105] = 4, + ACTIONS(4246), 1, anon_sym_SEMI, - ACTIONS(4272), 1, + ACTIONS(4248), 1, sym__newline, - STATE(2352), 1, + STATE(2347), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113531] = 4, - ACTIONS(3368), 1, - anon_sym_COMMA, - ACTIONS(3370), 1, - anon_sym_RBRACE, - STATE(2263), 1, - aux_sym_dictionary_repeat1, + [113119] = 3, + ACTIONS(1683), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113545] = 4, - ACTIONS(3056), 1, + ACTIONS(1681), 2, + anon_sym_except_STAR, + anon_sym_finally, + [113131] = 4, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3099), 1, + ACTIONS(3090), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2322), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113559] = 4, - ACTIONS(3401), 1, - anon_sym_COMMA, - ACTIONS(3403), 1, - anon_sym_RBRACE, - STATE(2354), 1, - aux_sym_dictionary_repeat1, + [113145] = 4, + ACTIONS(4250), 1, + anon_sym_SEMI, + ACTIONS(4252), 1, + sym__newline, + STATE(2486), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113573] = 4, - ACTIONS(1043), 1, - anon_sym_RBRACK, - ACTIONS(4274), 1, + [113159] = 4, + ACTIONS(1291), 1, + anon_sym_COLON, + ACTIONS(4254), 1, anon_sym_COMMA, - STATE(2316), 1, - aux_sym_type_parameter_repeat1, + STATE(2252), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113587] = 4, - ACTIONS(2680), 1, - anon_sym_RBRACK, - ACTIONS(4276), 1, + [113173] = 4, + ACTIONS(3372), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3374), 1, + anon_sym_RBRACE, + STATE(2349), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113601] = 4, - ACTIONS(645), 1, + [113187] = 4, + ACTIONS(625), 1, sym__newline, - ACTIONS(4278), 1, + ACTIONS(4256), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2321), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113615] = 4, - ACTIONS(3319), 1, - anon_sym_COMMA, - ACTIONS(3321), 1, + [113201] = 4, + ACTIONS(1027), 1, anon_sym_RBRACK, - STATE(2462), 1, - aux_sym_subscript_repeat1, + ACTIONS(4258), 1, + anon_sym_COMMA, + STATE(2307), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113629] = 4, - ACTIONS(1351), 1, + [113215] = 4, + ACTIONS(1331), 1, anon_sym_RBRACE, - ACTIONS(4280), 1, + ACTIONS(4260), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2427), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113643] = 4, - ACTIONS(1299), 1, - anon_sym_RPAREN, - ACTIONS(4282), 1, - anon_sym_COMMA, - STATE(2389), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113657] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4284), 1, - anon_sym_COLON, + [113229] = 3, + ACTIONS(4028), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113671] = 4, - ACTIONS(3101), 1, + ACTIONS(3918), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [113241] = 4, + ACTIONS(3092), 1, anon_sym_RPAREN, - ACTIONS(3103), 1, + ACTIONS(3094), 1, anon_sym_COMMA, - STATE(2362), 1, + STATE(2355), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113685] = 4, - ACTIONS(4286), 1, + [113255] = 4, + ACTIONS(4262), 1, anon_sym_RPAREN, - ACTIONS(4288), 1, + ACTIONS(4264), 1, anon_sym_COMMA, - STATE(2364), 1, + STATE(2357), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113699] = 4, - ACTIONS(3323), 1, + [113269] = 4, + ACTIONS(3256), 1, anon_sym_COMMA, - ACTIONS(3325), 1, + ACTIONS(3258), 1, anon_sym_RBRACK, - STATE(2366), 1, + STATE(2359), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113713] = 4, - ACTIONS(4290), 1, - anon_sym_COMMA, - ACTIONS(4292), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113727] = 4, - ACTIONS(4294), 1, + [113283] = 4, + ACTIONS(3928), 1, + anon_sym_RPAREN, + ACTIONS(4266), 1, anon_sym_COMMA, - ACTIONS(4296), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + STATE(2354), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113741] = 4, - ACTIONS(1183), 1, + [113297] = 4, + ACTIONS(1199), 1, anon_sym_RPAREN, - ACTIONS(4298), 1, + ACTIONS(4269), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113755] = 4, - ACTIONS(4237), 1, - sym__newline, - ACTIONS(4239), 1, - sym__indent, - STATE(849), 1, - sym__match_block, + [113311] = 4, + ACTIONS(2658), 1, + anon_sym_RBRACK, + ACTIONS(4271), 1, + anon_sym_COMMA, + STATE(2333), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113769] = 4, - ACTIONS(1185), 1, + [113325] = 4, + ACTIONS(1201), 1, anon_sym_RPAREN, - ACTIONS(4300), 1, + ACTIONS(4273), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113783] = 4, - ACTIONS(4302), 1, + [113339] = 4, + ACTIONS(4275), 1, anon_sym_COMMA, - ACTIONS(4304), 1, + ACTIONS(4277), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113797] = 4, - ACTIONS(4306), 1, + [113353] = 4, + ACTIONS(4279), 1, anon_sym_COMMA, - ACTIONS(4308), 1, + ACTIONS(4281), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113811] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2475), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [113821] = 4, - ACTIONS(2997), 1, - anon_sym_RPAREN, - ACTIONS(3056), 1, + [113367] = 4, + ACTIONS(4283), 1, anon_sym_COMMA, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113835] = 3, - ACTIONS(4262), 1, - anon_sym_EQ, + ACTIONS(4285), 1, + anon_sym_RBRACE, + STATE(2439), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_COMMA, - anon_sym_COLON, - [113847] = 3, - ACTIONS(3906), 1, - anon_sym_as, + [113381] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 2, - anon_sym_RPAREN, + ACTIONS(4287), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - [113859] = 2, + [113391] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [113869] = 4, - ACTIONS(3873), 1, - anon_sym_RPAREN, - ACTIONS(3995), 1, - anon_sym_COMMA, - STATE(2453), 1, - aux_sym__import_list_repeat1, + ACTIONS(2465), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [113401] = 3, + ACTIONS(1607), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113883] = 4, - ACTIONS(3934), 1, - anon_sym_RPAREN, - ACTIONS(4310), 1, + ACTIONS(1609), 2, + anon_sym_except_STAR, + anon_sym_finally, + [113413] = 4, + ACTIONS(4098), 1, + anon_sym_COLON, + ACTIONS(4289), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, + STATE(2364), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113897] = 4, - ACTIONS(4313), 1, + [113427] = 4, + ACTIONS(4292), 1, anon_sym_SEMI, - ACTIONS(4315), 1, + ACTIONS(4294), 1, sym__newline, - STATE(2381), 1, + STATE(2370), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113911] = 4, - ACTIONS(1299), 1, - anon_sym_RBRACK, - ACTIONS(4317), 1, + [113441] = 4, + ACTIONS(4296), 1, + anon_sym_RPAREN, + ACTIONS(4298), 1, anon_sym_COMMA, - STATE(2405), 1, - aux_sym_assert_statement_repeat1, + STATE(2390), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113925] = 4, - ACTIONS(3056), 1, + [113455] = 4, + ACTIONS(4300), 1, anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4302), 1, + anon_sym_RBRACE, + STATE(2439), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113939] = 4, - ACTIONS(2997), 1, - anon_sym_RBRACK, - ACTIONS(3152), 1, + [113469] = 4, + ACTIONS(3045), 1, anon_sym_COMMA, - STATE(2460), 1, + ACTIONS(3100), 1, + anon_sym_RPAREN, + STATE(2322), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113953] = 4, - ACTIONS(4319), 1, - anon_sym_COMMA, - ACTIONS(4321), 1, - anon_sym_RBRACK, - STATE(2467), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113967] = 4, - ACTIONS(3364), 1, + [113483] = 4, + ACTIONS(3386), 1, anon_sym_COMMA, - ACTIONS(3366), 1, + ACTIONS(3388), 1, anon_sym_RBRACE, - STATE(2384), 1, + STATE(2372), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113981] = 4, - ACTIONS(2889), 1, - anon_sym_RBRACK, - ACTIONS(4323), 1, - anon_sym_COMMA, - STATE(2380), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113995] = 4, - ACTIONS(635), 1, + [113497] = 4, + ACTIONS(631), 1, sym__newline, - ACTIONS(4326), 1, + ACTIONS(4304), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2321), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114009] = 4, - ACTIONS(1291), 1, - anon_sym_RPAREN, - ACTIONS(4328), 1, - anon_sym_COMMA, - STATE(2482), 1, - aux_sym__collection_elements_repeat1, + [113511] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114023] = 4, - ACTIONS(4019), 1, - anon_sym_RPAREN, - ACTIONS(4330), 1, + ACTIONS(4011), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(2383), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114037] = 4, - ACTIONS(1361), 1, + [113521] = 4, + ACTIONS(1341), 1, anon_sym_RBRACE, - ACTIONS(4333), 1, + ACTIONS(4306), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2427), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114051] = 4, - ACTIONS(3124), 1, + [113535] = 4, + ACTIONS(3020), 1, anon_sym_RPAREN, - ACTIONS(3126), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - STATE(2391), 1, - aux_sym_argument_list_repeat1, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114065] = 4, - ACTIONS(4335), 1, + [113549] = 4, + ACTIONS(4308), 1, anon_sym_RPAREN, - ACTIONS(4337), 1, + ACTIONS(4310), 1, anon_sym_COMMA, - STATE(2393), 1, + STATE(2379), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114079] = 4, - ACTIONS(4339), 1, - anon_sym_COMMA, - ACTIONS(4342), 1, - anon_sym_COLON, - STATE(2387), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114093] = 4, - ACTIONS(3273), 1, + [113563] = 4, + ACTIONS(3294), 1, anon_sym_COMMA, - ACTIONS(3275), 1, + ACTIONS(3296), 1, anon_sym_RBRACK, - STATE(2395), 1, + STATE(2381), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114107] = 4, - ACTIONS(3232), 1, + [113577] = 4, + ACTIONS(2873), 1, anon_sym_RPAREN, - ACTIONS(4344), 1, + ACTIONS(4312), 1, anon_sym_COMMA, - STATE(2389), 1, - aux_sym_assert_statement_repeat1, + STATE(2376), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114121] = 4, - ACTIONS(4347), 1, + [113591] = 4, + ACTIONS(3043), 1, + anon_sym_RPAREN, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(4349), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114135] = 4, - ACTIONS(1203), 1, + [113605] = 4, + ACTIONS(1213), 1, anon_sym_RPAREN, - ACTIONS(4351), 1, + ACTIONS(4315), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114149] = 3, - ACTIONS(3689), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3691), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114161] = 4, - ACTIONS(1205), 1, + [113619] = 4, + ACTIONS(1215), 1, anon_sym_RPAREN, - ACTIONS(4353), 1, + ACTIONS(4317), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114175] = 4, - ACTIONS(4355), 1, + [113633] = 4, + ACTIONS(4319), 1, anon_sym_COMMA, - ACTIONS(4357), 1, + ACTIONS(4321), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114189] = 4, - ACTIONS(4359), 1, + [113647] = 4, + ACTIONS(4323), 1, anon_sym_COMMA, - ACTIONS(4361), 1, + ACTIONS(4325), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114203] = 4, - ACTIONS(1251), 1, - anon_sym_RPAREN, - ACTIONS(4363), 1, - anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114217] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4365), 1, - anon_sym_COLON, - ACTIONS(3), 2, + [113661] = 3, + ACTIONS(3532), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [114231] = 3, - ACTIONS(3544), 1, + ACTIONS(3534), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113673] = 3, + ACTIONS(3548), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3546), 2, + ACTIONS(3550), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [114243] = 3, - ACTIONS(3573), 1, + [113685] = 3, + ACTIONS(3558), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 2, + ACTIONS(3560), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [114255] = 4, - ACTIONS(3926), 1, - sym_identifier, - STATE(2274), 1, - sym_dotted_name, - STATE(2606), 1, - sym_aliased_import, + [113697] = 3, + ACTIONS(3898), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114269] = 4, - ACTIONS(1253), 1, + ACTIONS(3947), 2, anon_sym_RPAREN, - ACTIONS(4367), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + [113709] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114283] = 3, - ACTIONS(1730), 1, - anon_sym_except, + ACTIONS(1696), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [113719] = 4, + ACTIONS(3542), 1, + anon_sym_RBRACK, + ACTIONS(4327), 1, + anon_sym_COMMA, + STATE(2387), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114295] = 4, - ACTIONS(4369), 1, - anon_sym_SEMI, - ACTIONS(4371), 1, + [113733] = 4, + ACTIONS(4170), 1, sym__newline, - STATE(2408), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(4172), 1, + sym__indent, + STATE(743), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114309] = 4, - ACTIONS(3056), 1, + [113747] = 4, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3132), 1, + ACTIONS(3110), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2322), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114323] = 4, - ACTIONS(3232), 1, - anon_sym_RBRACK, - ACTIONS(4373), 1, + [113761] = 4, + ACTIONS(1435), 1, + anon_sym_RPAREN, + ACTIONS(4330), 1, anon_sym_COMMA, - STATE(2405), 1, - aux_sym_assert_statement_repeat1, + STATE(2487), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114337] = 4, - ACTIONS(3455), 1, + [113775] = 4, + ACTIONS(3396), 1, anon_sym_COMMA, - ACTIONS(3457), 1, + ACTIONS(3398), 1, anon_sym_RBRACE, - STATE(2409), 1, + STATE(2393), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114351] = 4, - ACTIONS(4376), 1, - anon_sym_COMMA, - ACTIONS(4378), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114365] = 4, - ACTIONS(621), 1, - sym__newline, - ACTIONS(4380), 1, - anon_sym_SEMI, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, + [113789] = 4, + ACTIONS(3505), 1, + anon_sym_PIPE, + ACTIONS(4332), 1, + anon_sym_COLON, + STATE(1957), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114379] = 4, - ACTIONS(1329), 1, + [113803] = 4, + ACTIONS(1311), 1, anon_sym_RBRACE, - ACTIONS(4382), 1, + ACTIONS(4334), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2427), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114393] = 4, - ACTIONS(2688), 1, - anon_sym_RPAREN, - ACTIONS(4384), 1, + [113817] = 4, + ACTIONS(4336), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114407] = 4, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4386), 1, + ACTIONS(4338), 1, anon_sym_RBRACE, - STATE(2646), 1, - sym_format_specifier, + STATE(2360), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114421] = 4, - ACTIONS(3134), 1, + [113831] = 4, + ACTIONS(3114), 1, anon_sym_RPAREN, - ACTIONS(3136), 1, + ACTIONS(3116), 1, anon_sym_COMMA, - STATE(2416), 1, + STATE(2399), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114435] = 4, - ACTIONS(4388), 1, + [113845] = 4, + ACTIONS(4340), 1, anon_sym_RPAREN, - ACTIONS(4390), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - STATE(2418), 1, + STATE(2400), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114449] = 4, - ACTIONS(3285), 1, - anon_sym_COMMA, - ACTIONS(3287), 1, - anon_sym_RBRACK, - STATE(2421), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114463] = 4, - ACTIONS(2969), 1, + [113859] = 4, + ACTIONS(1451), 1, anon_sym_COLON, - ACTIONS(4392), 1, + ACTIONS(4344), 1, anon_sym_COMMA, - STATE(2330), 1, - aux_sym__parameters_repeat1, + STATE(2466), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114477] = 4, - ACTIONS(1219), 1, - anon_sym_RPAREN, - ACTIONS(4394), 1, + [113873] = 4, + ACTIONS(3223), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3227), 1, + anon_sym_RBRACK, + STATE(2402), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114491] = 4, - ACTIONS(4169), 1, + [113887] = 4, + ACTIONS(1225), 1, anon_sym_RPAREN, - ACTIONS(4396), 1, + ACTIONS(4346), 1, anon_sym_COMMA, - STATE(2502), 1, - aux_sym__parameters_repeat1, + STATE(2419), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114505] = 4, - ACTIONS(1221), 1, + [113901] = 4, + ACTIONS(1227), 1, anon_sym_RPAREN, - ACTIONS(4398), 1, + ACTIONS(4348), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114519] = 3, - ACTIONS(4015), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [114531] = 4, - ACTIONS(4400), 1, + [113915] = 4, + ACTIONS(4350), 1, anon_sym_COMMA, - ACTIONS(4402), 1, + ACTIONS(4352), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114545] = 4, - ACTIONS(4404), 1, + [113929] = 4, + ACTIONS(4354), 1, anon_sym_COMMA, - ACTIONS(4406), 1, + ACTIONS(4356), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114559] = 3, - ACTIONS(4408), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4011), 2, + [113943] = 4, + ACTIONS(1219), 1, anon_sym_RPAREN, + ACTIONS(4358), 1, anon_sym_COMMA, - [114571] = 4, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4410), 1, - anon_sym_RBRACE, - STATE(2758), 1, - sym_format_specifier, + STATE(2419), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114585] = 4, - ACTIONS(4321), 1, + [113957] = 4, + ACTIONS(4360), 1, anon_sym_RPAREN, - ACTIONS(4412), 1, + ACTIONS(4362), 1, anon_sym_COMMA, - STATE(2512), 1, + STATE(2327), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114599] = 4, - ACTIONS(3560), 1, - anon_sym_RBRACE, - ACTIONS(4414), 1, + [113971] = 4, + ACTIONS(3542), 1, + anon_sym_RPAREN, + ACTIONS(4364), 1, anon_sym_COMMA, - STATE(2425), 1, + STATE(2405), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114613] = 2, + [113985] = 4, + ACTIONS(4130), 1, + anon_sym_COMMA, + ACTIONS(4367), 1, + anon_sym_in, + STATE(2489), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, - anon_sym_RPAREN, + [113999] = 4, + ACTIONS(3045), 1, anon_sym_COMMA, - anon_sym_as, - [114623] = 3, - ACTIONS(1726), 1, - anon_sym_except, + ACTIONS(3118), 1, + anon_sym_RPAREN, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114635] = 4, - ACTIONS(3056), 1, + [114013] = 4, + ACTIONS(4130), 1, anon_sym_COMMA, - ACTIONS(3093), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4369), 1, + anon_sym_in, + STATE(2489), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114649] = 4, - ACTIONS(4417), 1, - anon_sym_SEMI, - ACTIONS(4419), 1, + [114027] = 4, + ACTIONS(619), 1, sym__newline, - STATE(2434), 1, + ACTIONS(4371), 1, + anon_sym_SEMI, + STATE(2321), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114663] = 4, - ACTIONS(3056), 1, + [114041] = 4, + ACTIONS(1263), 1, + anon_sym_RBRACE, + ACTIONS(4373), 1, anon_sym_COMMA, - ACTIONS(3142), 1, - anon_sym_RPAREN, - STATE(2382), 1, + STATE(2253), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114677] = 4, - ACTIONS(631), 1, - sym__newline, - ACTIONS(4421), 1, - anon_sym_SEMI, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, + [114055] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114691] = 2, + ACTIONS(3517), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [114065] = 4, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3124), 1, + anon_sym_RPAREN, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [114701] = 4, - ACTIONS(3405), 1, + [114079] = 4, + ACTIONS(3404), 1, anon_sym_COMMA, - ACTIONS(3407), 1, + ACTIONS(3406), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2415), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114715] = 4, - ACTIONS(649), 1, - sym__newline, - ACTIONS(4423), 1, - anon_sym_SEMI, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, + [114093] = 4, + ACTIONS(3954), 1, + anon_sym_RPAREN, + ACTIONS(4375), 1, + anon_sym_COMMA, + STATE(2354), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114729] = 4, - ACTIONS(1321), 1, + [114107] = 4, + ACTIONS(1323), 1, anon_sym_RBRACE, - ACTIONS(4425), 1, + ACTIONS(4377), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2427), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114743] = 2, + [114121] = 4, + ACTIONS(4379), 1, + anon_sym_COMMA, + ACTIONS(4381), 1, + anon_sym_RBRACE, + STATE(2446), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4427), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [114753] = 4, - ACTIONS(4342), 1, + [114135] = 4, + ACTIONS(3126), 1, anon_sym_RPAREN, - ACTIONS(4429), 1, + ACTIONS(3128), 1, anon_sym_COMMA, - STATE(2437), 1, - aux_sym_with_clause_repeat1, + STATE(2422), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114767] = 4, - ACTIONS(3144), 1, + [114149] = 4, + ACTIONS(4383), 1, anon_sym_RPAREN, - ACTIONS(3146), 1, + ACTIONS(4385), 1, anon_sym_COMMA, - STATE(2443), 1, + STATE(2424), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114781] = 4, - ACTIONS(4432), 1, + [114163] = 4, + ACTIONS(3479), 1, anon_sym_RPAREN, - ACTIONS(4434), 1, + ACTIONS(4387), 1, anon_sym_COMMA, - STATE(2444), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114795] = 4, - ACTIONS(3291), 1, + [114177] = 4, + ACTIONS(3231), 1, anon_sym_COMMA, - ACTIONS(3293), 1, + ACTIONS(3233), 1, anon_sym_RBRACK, - STATE(2446), 1, + STATE(2426), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114809] = 4, - ACTIONS(2732), 1, - sym_identifier, - ACTIONS(4436), 1, - anon_sym_import, - STATE(2627), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114823] = 4, - ACTIONS(4438), 1, - anon_sym_COMMA, - ACTIONS(4440), 1, + [114191] = 4, + ACTIONS(3840), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_COLON, - STATE(2345), 1, - aux_sym_with_clause_repeat1, + STATE(2623), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114837] = 4, - ACTIONS(1239), 1, + [114205] = 4, + ACTIONS(1235), 1, anon_sym_RPAREN, - ACTIONS(4442), 1, + ACTIONS(4392), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114851] = 4, - ACTIONS(1241), 1, + [114219] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2461), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [114229] = 4, + ACTIONS(1237), 1, anon_sym_RPAREN, - ACTIONS(4444), 1, + ACTIONS(4394), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114865] = 4, - ACTIONS(4446), 1, + [114243] = 4, + ACTIONS(4396), 1, anon_sym_COMMA, - ACTIONS(4448), 1, + ACTIONS(4398), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114879] = 4, - ACTIONS(4450), 1, + [114257] = 4, + ACTIONS(4400), 1, anon_sym_COMMA, - ACTIONS(4452), 1, + ACTIONS(4402), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114893] = 4, - ACTIONS(4454), 1, + [114271] = 4, + ACTIONS(4404), 1, anon_sym_COMMA, - ACTIONS(4456), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + ACTIONS(4407), 1, + anon_sym_RBRACE, + STATE(2427), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114907] = 4, - ACTIONS(4458), 1, - anon_sym_SEMI, - ACTIONS(4461), 1, - sym__newline, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, + [114285] = 4, + ACTIONS(3954), 1, + anon_sym_RPAREN, + ACTIONS(4409), 1, + anon_sym_COMMA, + STATE(2354), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114921] = 4, - ACTIONS(4237), 1, - sym__newline, - ACTIONS(4239), 1, - sym__indent, - STATE(730), 1, - sym__match_block, + [114299] = 3, + ACTIONS(4413), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114935] = 4, - ACTIONS(3299), 1, + ACTIONS(4411), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [114311] = 4, + ACTIONS(3244), 1, anon_sym_COMMA, - ACTIONS(3301), 1, + ACTIONS(3246), 1, anon_sym_RBRACK, - STATE(2452), 1, + STATE(2432), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114949] = 4, - ACTIONS(4463), 1, + [114325] = 4, + ACTIONS(4415), 1, anon_sym_COMMA, - ACTIONS(4465), 1, + ACTIONS(4417), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114963] = 4, - ACTIONS(4467), 1, + [114339] = 4, + ACTIONS(4419), 1, anon_sym_COMMA, - ACTIONS(4469), 1, + ACTIONS(4421), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114977] = 4, - ACTIONS(4001), 1, - anon_sym_RPAREN, - ACTIONS(4471), 1, - anon_sym_COMMA, - STATE(2383), 1, - aux_sym__import_list_repeat1, + [114353] = 4, + ACTIONS(4423), 1, + anon_sym_SEMI, + ACTIONS(4425), 1, + sym__newline, + STATE(2409), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114991] = 4, - ACTIONS(4001), 1, - anon_sym_RPAREN, - ACTIONS(4473), 1, + [114367] = 4, + ACTIONS(1291), 1, + anon_sym_RBRACK, + ACTIONS(4427), 1, anon_sym_COMMA, - STATE(2383), 1, - aux_sym__import_list_repeat1, + STATE(2469), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115005] = 3, - ACTIONS(3910), 1, - anon_sym_as, + [114381] = 4, + ACTIONS(3248), 1, + anon_sym_COMMA, + ACTIONS(3250), 1, + anon_sym_RBRACK, + STATE(2437), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115017] = 4, - ACTIONS(3340), 1, + [114395] = 4, + ACTIONS(4429), 1, anon_sym_COMMA, - ACTIONS(3342), 1, + ACTIONS(4431), 1, anon_sym_RBRACK, - STATE(2459), 1, + STATE(2443), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115031] = 4, - ACTIONS(4475), 1, - anon_sym_SEMI, - ACTIONS(4477), 1, - sym__newline, - STATE(2257), 1, - aux_sym__simple_statements_repeat1, + [114409] = 4, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4435), 1, + anon_sym_RBRACK, + STATE(2443), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115045] = 4, - ACTIONS(4479), 1, + [114423] = 4, + ACTIONS(1221), 1, + anon_sym_RPAREN, + ACTIONS(4437), 1, anon_sym_COMMA, - ACTIONS(4481), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + STATE(2419), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115059] = 4, - ACTIONS(4483), 1, + [114437] = 4, + ACTIONS(4439), 1, anon_sym_COMMA, - ACTIONS(4485), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + ACTIONS(4442), 1, + anon_sym_RBRACE, + STATE(2439), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115073] = 4, + [114451] = 4, ACTIONS(1291), 1, - anon_sym_RBRACK, - ACTIONS(4487), 1, + anon_sym_RPAREN, + ACTIONS(4444), 1, anon_sym_COMMA, - STATE(2503), 1, - aux_sym__collection_elements_repeat1, + STATE(2478), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115087] = 2, + [114465] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 3, + ACTIONS(3949), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [115097] = 4, - ACTIONS(4489), 1, + [114475] = 4, + ACTIONS(3382), 1, anon_sym_COMMA, - ACTIONS(4491), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + ACTIONS(3384), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115111] = 4, - ACTIONS(4493), 1, - anon_sym_SEMI, - ACTIONS(4495), 1, - sym__newline, - STATE(2485), 1, - aux_sym__simple_statements_repeat1, + [114489] = 4, + ACTIONS(4446), 1, + anon_sym_COMMA, + ACTIONS(4449), 1, + anon_sym_RBRACK, + STATE(2443), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115125] = 2, + [114503] = 4, + ACTIONS(2652), 1, + anon_sym_RPAREN, + ACTIONS(4451), 1, + anon_sym_COMMA, + STATE(2294), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 3, - anon_sym_RPAREN, + [114517] = 4, + ACTIONS(2654), 1, + anon_sym_RBRACK, + ACTIONS(4453), 1, anon_sym_COMMA, - anon_sym_EQ, - [115135] = 3, - ACTIONS(4499), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + STATE(2333), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115147] = 4, - ACTIONS(4501), 1, + [114531] = 4, + ACTIONS(4455), 1, anon_sym_COMMA, - ACTIONS(4504), 1, - anon_sym_COLON, - STATE(2466), 1, - aux_sym_match_statement_repeat1, + ACTIONS(4457), 1, + anon_sym_RBRACE, + STATE(2439), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115161] = 4, - ACTIONS(2054), 1, - anon_sym_RBRACK, - ACTIONS(4506), 1, + [114545] = 4, + ACTIONS(2692), 1, + anon_sym_RPAREN, + ACTIONS(4459), 1, anon_sym_COMMA, - STATE(2380), 1, - aux_sym__patterns_repeat1, + STATE(2294), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115175] = 4, - ACTIONS(3801), 1, + [114559] = 4, + ACTIONS(3840), 1, anon_sym_LPAREN, - ACTIONS(4508), 1, + ACTIONS(4461), 1, anon_sym_COLON, - STATE(2707), 1, + STATE(2687), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115189] = 4, - ACTIONS(4073), 1, + [114573] = 4, + ACTIONS(4130), 1, anon_sym_COMMA, - ACTIONS(4510), 1, + ACTIONS(4463), 1, anon_sym_in, - STATE(2486), 1, + STATE(2489), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115203] = 4, - ACTIONS(3054), 1, - anon_sym_RPAREN, - ACTIONS(3056), 1, + [114587] = 4, + ACTIONS(4465), 1, anon_sym_COMMA, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4467), 1, + anon_sym_RBRACE, + STATE(2439), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115217] = 4, - ACTIONS(4073), 1, + [114601] = 4, + ACTIONS(4130), 1, anon_sym_COMMA, - ACTIONS(4512), 1, + ACTIONS(4469), 1, anon_sym_in, - STATE(2486), 1, + STATE(2489), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115231] = 2, - ACTIONS(3), 2, + [114615] = 3, + ACTIONS(3588), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4041), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [115241] = 4, - ACTIONS(3526), 1, + ACTIONS(3590), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [114627] = 4, + ACTIONS(3695), 1, + anon_sym_DOT, + ACTIONS(3699), 1, anon_sym_PIPE, - ACTIONS(4514), 1, + ACTIONS(4471), 1, anon_sym_COLON, - STATE(1933), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115255] = 4, - ACTIONS(3736), 1, + [114641] = 4, + ACTIONS(3695), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3699), 1, anon_sym_PIPE, - ACTIONS(4516), 1, + ACTIONS(4473), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115269] = 4, - ACTIONS(2985), 1, - anon_sym_COMMA, - ACTIONS(2997), 1, - anon_sym_RBRACE, - STATE(2338), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115283] = 4, - ACTIONS(3736), 1, + [114655] = 4, + ACTIONS(3695), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3699), 1, anon_sym_PIPE, - ACTIONS(4518), 1, + ACTIONS(4475), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115297] = 4, - ACTIONS(3736), 1, + [114669] = 4, + ACTIONS(3695), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3699), 1, anon_sym_PIPE, - ACTIONS(4520), 1, + ACTIONS(4477), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115311] = 4, - ACTIONS(4522), 1, + [114683] = 4, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(4524), 1, - anon_sym_RBRACE, - STATE(2278), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4479), 1, + anon_sym_RPAREN, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115325] = 4, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4526), 1, - anon_sym_RBRACE, - STATE(2617), 1, - sym_format_specifier, + [114697] = 4, + ACTIONS(1263), 1, + anon_sym_RBRACK, + ACTIONS(4481), 1, + anon_sym_COMMA, + STATE(2387), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115339] = 4, - ACTIONS(3381), 1, - anon_sym_COMMA, - ACTIONS(3383), 1, - anon_sym_RBRACE, - STATE(2492), 1, - aux_sym_dictionary_repeat1, + [114711] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115353] = 4, - ACTIONS(3934), 1, - anon_sym_RBRACK, - ACTIONS(4528), 1, + ACTIONS(2882), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_case_clause_repeat1, + anon_sym_EQ, + [114721] = 4, + ACTIONS(2983), 1, + anon_sym_RPAREN, + ACTIONS(3045), 1, + anon_sym_COMMA, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115367] = 4, - ACTIONS(3560), 1, - anon_sym_RPAREN, - ACTIONS(4531), 1, + [114735] = 4, + ACTIONS(4066), 1, + sym__newline, + ACTIONS(4068), 1, + sym__indent, + STATE(719), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114749] = 4, + ACTIONS(2002), 1, + anon_sym_RBRACK, + ACTIONS(4483), 1, anon_sym_COMMA, - STATE(2482), 1, - aux_sym__collection_elements_repeat1, + STATE(2473), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115381] = 4, - ACTIONS(4073), 1, + [114763] = 4, + ACTIONS(4130), 1, anon_sym_COMMA, - ACTIONS(4534), 1, + ACTIONS(4485), 1, anon_sym_in, - STATE(2486), 1, + STATE(2489), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115395] = 4, - ACTIONS(4073), 1, + [114777] = 4, + ACTIONS(4130), 1, anon_sym_COMMA, - ACTIONS(4536), 1, + ACTIONS(4487), 1, anon_sym_in, - STATE(2486), 1, + STATE(2489), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115409] = 4, - ACTIONS(627), 1, - sym__newline, - ACTIONS(4538), 1, - anon_sym_SEMI, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, + [114791] = 4, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(4489), 1, + anon_sym_RPAREN, + STATE(2322), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115423] = 4, - ACTIONS(995), 1, - anon_sym_in, - ACTIONS(4540), 1, + [114805] = 4, + ACTIONS(4491), 1, anon_sym_COMMA, - STATE(2497), 1, - aux_sym__patterns_repeat1, + ACTIONS(4494), 1, + anon_sym_COLON, + STATE(2466), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115437] = 3, - ACTIONS(3614), 1, + [114819] = 4, + ACTIONS(4496), 1, + anon_sym_COMMA, + ACTIONS(4498), 1, + anon_sym_RBRACK, + STATE(2443), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114833] = 4, + ACTIONS(4500), 1, + anon_sym_COMMA, + ACTIONS(4502), 1, + anon_sym_RBRACK, + STATE(2443), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114847] = 4, + ACTIONS(3204), 1, + anon_sym_RBRACK, + ACTIONS(4504), 1, + anon_sym_COMMA, + STATE(2469), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114861] = 3, + ACTIONS(4509), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3616), 2, + ACTIONS(4507), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [115449] = 4, - ACTIONS(3056), 1, + [114873] = 4, + ACTIONS(3064), 1, + anon_sym_RPAREN, + ACTIONS(3066), 1, anon_sym_COMMA, - ACTIONS(4542), 1, + STATE(2403), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114887] = 4, + ACTIONS(2686), 1, anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4511), 1, + anon_sym_COMMA, + STATE(2294), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115463] = 4, - ACTIONS(3056), 1, + [114901] = 4, + ACTIONS(2873), 1, + anon_sym_RBRACK, + ACTIONS(4513), 1, anon_sym_COMMA, - ACTIONS(4544), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + STATE(2473), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115477] = 4, - ACTIONS(4190), 1, + [114915] = 4, + ACTIONS(4170), 1, sym__newline, - ACTIONS(4192), 1, + ACTIONS(4172), 1, sym__indent, - STATE(812), 1, + STATE(786), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115491] = 4, - ACTIONS(4546), 1, + [114929] = 4, + ACTIONS(3689), 1, + anon_sym_RPAREN, + ACTIONS(4026), 1, anon_sym_COMMA, - ACTIONS(4548), 1, - anon_sym_COLON, - STATE(2466), 1, - aux_sym_match_statement_repeat1, + STATE(2414), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115505] = 4, - ACTIONS(1327), 1, + [114943] = 4, + ACTIONS(3703), 1, + anon_sym_COLON, + ACTIONS(4516), 1, anon_sym_RBRACE, - ACTIONS(4550), 1, + STATE(2684), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114957] = 4, + ACTIONS(4044), 1, + anon_sym_RPAREN, + ACTIONS(4518), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + STATE(2262), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114971] = 4, + ACTIONS(3204), 1, + anon_sym_RPAREN, + ACTIONS(4520), 1, + anon_sym_COMMA, + STATE(2478), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115519] = 2, + [114985] = 4, + ACTIONS(4523), 1, + anon_sym_RPAREN, + ACTIONS(4525), 1, + anon_sym_COMMA, + STATE(2438), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + [114999] = 4, + ACTIONS(4360), 1, + anon_sym_RBRACK, + ACTIONS(4527), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [115529] = 4, - ACTIONS(4190), 1, + STATE(2462), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115013] = 4, + ACTIONS(3695), 1, + anon_sym_DOT, + ACTIONS(3699), 1, + anon_sym_PIPE, + ACTIONS(4529), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115027] = 4, + ACTIONS(4170), 1, sym__newline, - ACTIONS(4192), 1, + ACTIONS(4172), 1, sym__indent, - STATE(799), 1, + STATE(790), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115543] = 2, + [115041] = 4, + ACTIONS(4531), 1, + anon_sym_COMMA, + ACTIONS(4534), 1, + anon_sym_COLON, + STATE(2483), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115055] = 3, + ACTIONS(4048), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3964), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115067] = 4, + ACTIONS(2983), 1, + anon_sym_RBRACK, + ACTIONS(3037), 1, + anon_sym_COMMA, + STATE(2458), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115081] = 4, + ACTIONS(635), 1, + sym__newline, + ACTIONS(4536), 1, + anon_sym_SEMI, + STATE(2321), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115095] = 4, + ACTIONS(4494), 1, + anon_sym_RPAREN, + ACTIONS(4538), 1, + anon_sym_COMMA, + STATE(2487), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115109] = 4, + ACTIONS(4541), 1, + anon_sym_SEMI, + ACTIONS(4543), 1, + sym__newline, + STATE(2242), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 3, - anon_sym_RPAREN, + [115123] = 4, + ACTIONS(979), 1, + anon_sym_in, + ACTIONS(4545), 1, anon_sym_COMMA, - anon_sym_EQ, - [115553] = 2, + STATE(2277), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + [115137] = 4, + ACTIONS(4130), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [115563] = 4, - ACTIONS(2889), 1, + ACTIONS(4547), 1, anon_sym_in, - ACTIONS(4552), 1, - anon_sym_COMMA, - STATE(2497), 1, + STATE(2489), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115577] = 4, - ACTIONS(4073), 1, + [115151] = 4, + ACTIONS(4130), 1, anon_sym_COMMA, - ACTIONS(4555), 1, + ACTIONS(4549), 1, anon_sym_in, - STATE(2486), 1, + STATE(2489), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115591] = 4, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3074), 1, + [115165] = 4, + ACTIONS(3102), 1, anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3104), 1, + anon_sym_COMMA, + STATE(2378), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115605] = 4, - ACTIONS(3058), 1, - anon_sym_RPAREN, - ACTIONS(3060), 1, - anon_sym_COMMA, - STATE(2288), 1, - aux_sym_argument_list_repeat1, + [115179] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115619] = 4, - ACTIONS(4557), 1, - anon_sym_RPAREN, - ACTIONS(4559), 1, - anon_sym_COMMA, - STATE(2303), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4551), 2, + sym__newline, + anon_sym_SEMI, + [115188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115633] = 4, - ACTIONS(2969), 1, - anon_sym_RPAREN, - ACTIONS(4561), 1, + ACTIONS(3542), 2, anon_sym_COMMA, - STATE(2317), 1, - aux_sym__parameters_repeat1, + anon_sym_RBRACK, + [115197] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115647] = 4, - ACTIONS(3560), 1, - anon_sym_RBRACK, - ACTIONS(4563), 1, - anon_sym_COMMA, - STATE(2503), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(1622), 2, + sym__dedent, + anon_sym_case, + [115206] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115661] = 3, - ACTIONS(1698), 1, - anon_sym_except, + ACTIONS(4553), 2, + sym__newline, + anon_sym_SEMI, + [115215] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 2, - anon_sym_except_STAR, - anon_sym_finally, - [115673] = 4, - ACTIONS(3303), 1, - anon_sym_COMMA, - ACTIONS(3305), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + ACTIONS(4555), 2, + anon_sym__, + sym_identifier, + [115224] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115687] = 4, - ACTIONS(2889), 1, - anon_sym_RPAREN, - ACTIONS(4566), 1, - anon_sym_COMMA, - STATE(2506), 1, - aux_sym__patterns_repeat1, + ACTIONS(4557), 2, + sym__newline, + anon_sym_SEMI, + [115233] = 3, + ACTIONS(4559), 1, + sym_integer, + ACTIONS(4561), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115701] = 4, - ACTIONS(3801), 1, - anon_sym_LPAREN, - ACTIONS(4569), 1, - anon_sym_COLON, - STATE(2784), 1, - sym_argument_list, + [115244] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115715] = 4, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4571), 1, - anon_sym_RBRACE, - STATE(2663), 1, - sym_format_specifier, + ACTIONS(4563), 2, + sym__dedent, + anon_sym_case, + [115253] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115729] = 4, - ACTIONS(4190), 1, + ACTIONS(3074), 2, sym__newline, - ACTIONS(4192), 1, - sym__indent, - STATE(820), 1, - sym__match_block, + anon_sym_SEMI, + [115262] = 3, + ACTIONS(4565), 1, + sym_integer, + ACTIONS(4567), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115743] = 4, - ACTIONS(4073), 1, - anon_sym_COMMA, - ACTIONS(4573), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, + [115273] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115757] = 4, - ACTIONS(4073), 1, - anon_sym_COMMA, - ACTIONS(4575), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, + ACTIONS(4569), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [115282] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115771] = 4, - ACTIONS(2054), 1, - anon_sym_RPAREN, - ACTIONS(4577), 1, - anon_sym_COMMA, - STATE(2506), 1, - aux_sym__patterns_repeat1, + ACTIONS(4571), 2, + sym__newline, + anon_sym_SEMI, + [115291] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115785] = 2, + ACTIONS(4573), 2, + sym__dedent, + anon_sym_case, + [115300] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3528), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115794] = 2, + ACTIONS(4575), 2, + sym__dedent, + anon_sym_case, + [115309] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + ACTIONS(4577), 2, + sym__newline, + anon_sym_SEMI, + [115318] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3542), 2, anon_sym_COMMA, - anon_sym_COLON, - [115803] = 3, + anon_sym_RBRACE, + [115327] = 3, ACTIONS(4579), 1, sym_integer, ACTIONS(4581), 1, @@ -123057,502 +122387,513 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115814] = 2, + [115338] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115823] = 2, + ACTIONS(1648), 2, + sym__dedent, + anon_sym_case, + [115347] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4583), 2, sym__newline, anon_sym_SEMI, - [115832] = 3, - ACTIONS(4585), 1, - sym_integer, - ACTIONS(4587), 1, - sym_float, + [115356] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115843] = 2, + ACTIONS(4585), 2, + sym__newline, + anon_sym_SEMI, + [115365] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, + ACTIONS(4201), 2, sym__newline, anon_sym_SEMI, - [115852] = 2, + [115374] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4589), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [115861] = 2, + ACTIONS(4587), 2, + sym__newline, + anon_sym_SEMI, + [115383] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 2, + ACTIONS(4589), 2, sym__dedent, anon_sym_case, - [115870] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4593), 2, - sym__newline, - anon_sym_SEMI, - [115879] = 2, + [115392] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4427), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115888] = 3, - ACTIONS(4595), 1, + ACTIONS(4591), 2, + anon_sym__, + sym_identifier, + [115401] = 3, + ACTIONS(4593), 1, sym_integer, - ACTIONS(4597), 1, + ACTIONS(4595), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115899] = 2, + [115412] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, + ACTIONS(3479), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [115908] = 2, + [115421] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 2, + ACTIONS(4597), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [115917] = 3, - ACTIONS(4601), 1, - anon_sym_COLON, - ACTIONS(4603), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115928] = 2, + [115430] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 2, - sym__dedent, - anon_sym_case, - [115937] = 2, + ACTIONS(4599), 2, + sym__newline, + anon_sym_SEMI, + [115439] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 2, - sym__dedent, - anon_sym_case, - [115946] = 2, + ACTIONS(4601), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115448] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 2, - sym__dedent, - anon_sym_case, - [115955] = 2, + ACTIONS(3176), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115457] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4609), 2, - anon_sym__, - sym_identifier, - [115964] = 2, + ACTIONS(3542), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115466] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 2, + ACTIONS(1644), 2, sym__dedent, anon_sym_case, - [115973] = 3, - ACTIONS(4613), 1, + [115475] = 3, + ACTIONS(4603), 1, sym_integer, - ACTIONS(4615), 1, + ACTIONS(4605), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115984] = 2, + [115486] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 2, - anon_sym__, - sym_identifier, - [115993] = 2, + ACTIONS(3964), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115495] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 2, + ACTIONS(2882), 2, anon_sym_COMMA, anon_sym_RBRACK, - [116002] = 3, - ACTIONS(4621), 1, + [115504] = 3, + ACTIONS(4607), 1, sym_integer, - ACTIONS(4623), 1, + ACTIONS(4609), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116013] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4619), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [116022] = 2, + [115515] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [116031] = 2, + ACTIONS(3290), 2, + sym__newline, + anon_sym_SEMI, + [115524] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 2, + ACTIONS(4611), 2, sym__dedent, anon_sym_case, - [116040] = 2, + [115533] = 3, + ACTIONS(4613), 1, + sym_integer, + ACTIONS(4615), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4629), 2, - sym__dedent, - anon_sym_case, - [116049] = 2, + [115544] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 2, + ACTIONS(4617), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [116058] = 2, + [115553] = 3, + ACTIONS(4619), 1, + anon_sym_COMMA, + STATE(1965), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, + [115564] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3964), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [116067] = 3, - ACTIONS(4631), 1, - sym_integer, - ACTIONS(4633), 1, - sym_float, + [115573] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116078] = 2, + ACTIONS(4407), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115582] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4178), 2, + ACTIONS(4597), 2, anon_sym_COMMA, anon_sym_RBRACE, - [116087] = 2, + [115591] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 2, + ACTIONS(1565), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116096] = 3, - ACTIONS(4637), 1, - sym_integer, - ACTIONS(4639), 1, - sym_float, + [115600] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116107] = 2, + ACTIONS(3964), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115609] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + ACTIONS(4098), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116116] = 2, + [115618] = 3, + ACTIONS(4621), 1, + anon_sym_COLON, + ACTIONS(4623), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116125] = 2, + [115629] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116134] = 2, + ACTIONS(4625), 2, + sym__dedent, + anon_sym_case, + [115638] = 3, + ACTIONS(4627), 1, + sym_integer, + ACTIONS(4629), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116143] = 2, + [115649] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4342), 2, + ACTIONS(4631), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116152] = 2, + [115658] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 2, + ACTIONS(4633), 2, sym__dedent, anon_sym_case, - [116161] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2588), 1, - sym_parameters, + [115667] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116172] = 2, + ACTIONS(4494), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115676] = 3, + ACTIONS(3916), 1, + anon_sym_LPAREN, + STATE(2573), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4645), 2, - sym__dedent, - anon_sym_case, - [116181] = 2, + [115687] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 2, + ACTIONS(3390), 2, anon_sym_COMMA, anon_sym_RBRACK, - [116190] = 3, - ACTIONS(4647), 1, - sym_integer, - ACTIONS(4649), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116201] = 2, + [115696] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4461), 2, + ACTIONS(3176), 2, sym__newline, anon_sym_SEMI, - [116210] = 2, + [115705] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4651), 2, + ACTIONS(4635), 2, sym__newline, anon_sym_SEMI, - [116219] = 3, - ACTIONS(4653), 1, - anon_sym_COMMA, - STATE(1963), 1, - aux_sym__patterns_repeat1, + [115714] = 3, + ACTIONS(4637), 1, + sym_integer, + ACTIONS(4639), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116230] = 2, + [115725] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + ACTIONS(4494), 2, anon_sym_COMMA, anon_sym_COLON, - [116239] = 2, + [115734] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3385), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116248] = 2, + ACTIONS(4641), 2, + anon_sym__, + sym_identifier, + [115743] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4655), 2, - sym__newline, - anon_sym_SEMI, - [116257] = 2, + ACTIONS(2884), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115752] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4657), 2, - anon_sym__, - sym_identifier, - [116266] = 2, + ACTIONS(3176), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115761] = 3, + ACTIONS(4643), 1, + anon_sym_COLON, + ACTIONS(4645), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4659), 2, + [115772] = 3, + ACTIONS(4647), 1, anon_sym_COLON, + ACTIONS(4649), 1, anon_sym_DASH_GT, - [116275] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4342), 2, + [115783] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3918), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [115792] = 3, + ACTIONS(4651), 1, anon_sym_COLON, - [116284] = 2, + ACTIONS(4653), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4661), 2, - sym__newline, - anon_sym_SEMI, - [116293] = 2, + [115803] = 3, + ACTIONS(4655), 1, + anon_sym_COLON, + ACTIONS(4657), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4663), 2, - sym__dedent, - anon_sym_case, - [116302] = 2, + [115814] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3315), 2, + ACTIONS(4659), 2, sym__newline, anon_sym_SEMI, - [116311] = 2, + [115823] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 2, + ACTIONS(1565), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115832] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4661), 2, sym__dedent, anon_sym_case, - [116320] = 2, + [115841] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4665), 2, + ACTIONS(4663), 2, sym__newline, anon_sym_SEMI, - [116329] = 2, + [115850] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 2, - anon_sym_RPAREN, + ACTIONS(4601), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115859] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4631), 2, anon_sym_COMMA, - [116338] = 3, - ACTIONS(4667), 1, anon_sym_COLON, - ACTIONS(4669), 1, - anon_sym_DASH_GT, + [115868] = 3, + ACTIONS(4665), 1, + sym_integer, + ACTIONS(4667), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116349] = 2, + [115879] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4671), 2, + ACTIONS(4669), 2, sym__dedent, anon_sym_case, - [116358] = 2, + [115888] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4673), 2, + ACTIONS(1609), 2, + sym__dedent, + anon_sym_case, + [115897] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4671), 2, sym__dedent, anon_sym_case, - [116367] = 3, + [115906] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2873), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115915] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4673), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [115924] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4287), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115933] = 3, ACTIONS(4675), 1, - sym_integer, + anon_sym_COLON, ACTIONS(4677), 1, - sym_float, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116378] = 2, + [115944] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4679), 2, sym__dedent, anon_sym_case, - [116387] = 2, + [115953] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4681), 2, sym__newline, anon_sym_SEMI, - [116396] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4683), 2, - sym__newline, - anon_sym_SEMI, - [116405] = 2, + [115962] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 2, + ACTIONS(2873), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116414] = 2, + [115971] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116423] = 2, + ACTIONS(4683), 2, + sym__dedent, + anon_sym_case, + [115980] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4685), 2, - anon_sym__, - sym_identifier, - [116432] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4687), 2, sym__dedent, anon_sym_case, - [116441] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4689), 2, - sym__newline, - anon_sym_SEMI, - [116450] = 2, + [115989] = 3, + ACTIONS(4687), 1, + sym_integer, + ACTIONS(4689), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116459] = 3, + [116000] = 3, ACTIONS(4691), 1, anon_sym_COLON, ACTIONS(4693), 1, @@ -123560,4005 +122901,3880 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116470] = 3, - ACTIONS(4695), 1, - anon_sym_COLON, - ACTIONS(4697), 1, - anon_sym_DASH_GT, + [116011] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116481] = 3, - ACTIONS(4699), 1, - anon_sym_COLON, - ACTIONS(4701), 1, - anon_sym_DASH_GT, + ACTIONS(4597), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [116020] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116492] = 3, - ACTIONS(4703), 1, + ACTIONS(4098), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4705), 1, - anon_sym_DASH_GT, + [116029] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116503] = 3, - ACTIONS(4707), 1, - anon_sym_COLON, - ACTIONS(4709), 1, - anon_sym_DASH_GT, + ACTIONS(4695), 2, + anon_sym__, + sym_identifier, + [116038] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116514] = 3, - ACTIONS(4711), 1, - sym_integer, - ACTIONS(4713), 1, - sym_float, + ACTIONS(3282), 2, + sym__newline, + anon_sym_SEMI, + [116047] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116525] = 2, + ACTIONS(1681), 2, + sym__dedent, + anon_sym_case, + [116056] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 2, - sym__newline, - anon_sym_SEMI, - [116534] = 3, - ACTIONS(4715), 1, - sym_integer, - ACTIONS(4717), 1, - sym_float, + ACTIONS(4601), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [116065] = 3, + ACTIONS(3916), 1, + anon_sym_LPAREN, + STATE(2558), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116545] = 2, + [116076] = 3, + ACTIONS(3916), 1, + anon_sym_LPAREN, + STATE(2559), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 2, - sym__dedent, - anon_sym_case, - [116554] = 3, - ACTIONS(4719), 1, + [116087] = 3, + ACTIONS(4697), 1, sym_integer, - ACTIONS(4721), 1, + ACTIONS(4699), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116565] = 2, + [116098] = 3, + ACTIONS(4701), 1, + anon_sym_COLON, + ACTIONS(4703), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4723), 2, - sym__newline, - anon_sym_SEMI, - [116574] = 2, + [116109] = 3, + ACTIONS(3916), 1, + anon_sym_LPAREN, + STATE(2580), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116583] = 2, + [116120] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, + ACTIONS(2884), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116592] = 2, + [116129] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4725), 2, - sym__newline, - anon_sym_SEMI, - [116601] = 2, + ACTIONS(4705), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [116138] = 2, + ACTIONS(3064), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116610] = 3, - ACTIONS(4727), 1, - anon_sym_COLON, - ACTIONS(4729), 1, - anon_sym_DASH_GT, + [116146] = 2, + ACTIONS(4707), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116154] = 2, + ACTIONS(4709), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116621] = 2, + [116162] = 2, + ACTIONS(4711), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 2, + [116170] = 2, + ACTIONS(4713), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [116630] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2572), 1, - sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116641] = 2, + [116178] = 2, + ACTIONS(4715), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 2, - sym__dedent, - anon_sym_case, - [116650] = 2, + [116186] = 2, + ACTIONS(4717), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3066), 2, - sym__newline, - anon_sym_SEMI, - [116659] = 2, + [116194] = 2, + ACTIONS(4719), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 2, - sym__dedent, - anon_sym_case, - [116668] = 2, + [116202] = 2, + ACTIONS(4721), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116677] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2587), 1, - sym_parameters, + [116210] = 2, + ACTIONS(3406), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116688] = 2, + [116218] = 2, + ACTIONS(4723), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 2, - sym__newline, - anon_sym_SEMI, - [116697] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2589), 1, - sym_parameters, + [116226] = 2, + ACTIONS(4725), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116708] = 2, + [116234] = 2, + ACTIONS(4727), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 2, - anon_sym_COMMA, + [116242] = 2, + ACTIONS(4729), 1, anon_sym_COLON, - [116717] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116726] = 2, + [116250] = 2, + ACTIONS(4731), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 2, - anon_sym_COMMA, + [116258] = 2, + ACTIONS(4733), 1, anon_sym_RBRACK, - [116735] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4733), 2, - sym__newline, - anon_sym_SEMI, - [116744] = 2, + [116266] = 2, ACTIONS(4735), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116752] = 2, + [116274] = 2, ACTIONS(4737), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116760] = 2, + [116282] = 2, ACTIONS(4739), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116768] = 2, + [116290] = 2, ACTIONS(4741), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116776] = 2, + [116298] = 2, ACTIONS(4743), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116784] = 2, - ACTIONS(3407), 1, + [116306] = 2, + ACTIONS(4745), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116792] = 2, - ACTIONS(4745), 1, - sym_identifier, + [116314] = 2, + ACTIONS(4747), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116800] = 2, - ACTIONS(4747), 1, + [116322] = 2, + ACTIONS(3126), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116808] = 2, + [116330] = 2, ACTIONS(4749), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116338] = 2, + ACTIONS(3416), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116346] = 2, + ACTIONS(3402), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116816] = 2, + [116354] = 2, ACTIONS(4751), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116824] = 2, + [116362] = 2, ACTIONS(4753), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116832] = 2, + [116370] = 2, ACTIONS(4755), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116840] = 2, + [116378] = 2, ACTIONS(4757), 1, - sym_identifier, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116848] = 2, + [116386] = 2, ACTIONS(4759), 1, - anon_sym_import, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116856] = 2, + [116394] = 2, ACTIONS(4761), 1, - anon_sym_RPAREN, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116864] = 2, + [116402] = 2, ACTIONS(4763), 1, - anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116410] = 2, + ACTIONS(3082), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116872] = 2, + [116418] = 2, ACTIONS(4765), 1, - anon_sym_COLON_EQ, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116880] = 2, + [116426] = 2, ACTIONS(4767), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116888] = 2, + [116434] = 2, ACTIONS(4769), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116896] = 2, + [116442] = 2, ACTIONS(4771), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116904] = 2, + [116450] = 2, ACTIONS(4773), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116912] = 2, + [116458] = 2, ACTIONS(4775), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116920] = 2, - ACTIONS(3144), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116928] = 2, + [116466] = 2, ACTIONS(4777), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116936] = 2, + [116474] = 2, ACTIONS(4779), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116944] = 2, + [116482] = 2, ACTIONS(4781), 1, - sym_identifier, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116952] = 2, - ACTIONS(4783), 1, - anon_sym_import, + [116490] = 2, + ACTIONS(1437), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116960] = 2, - ACTIONS(4785), 1, - anon_sym_RBRACE, + [116498] = 2, + ACTIONS(4783), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116968] = 2, - ACTIONS(3079), 1, - anon_sym_RPAREN, + [116506] = 2, + ACTIONS(4785), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116976] = 2, + [116514] = 2, ACTIONS(4787), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116984] = 2, + [116522] = 2, ACTIONS(4789), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116992] = 2, + [116530] = 2, ACTIONS(4791), 1, - anon_sym_COLON_EQ, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117000] = 2, - ACTIONS(4793), 1, - anon_sym_RBRACE, + [116538] = 2, + ACTIONS(4194), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117008] = 2, - ACTIONS(4795), 1, - anon_sym_RBRACK, + [116546] = 2, + ACTIONS(4793), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117016] = 2, - ACTIONS(3457), 1, - anon_sym_RBRACE, + [116554] = 2, + ACTIONS(4795), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117024] = 2, + [116562] = 2, ACTIONS(4797), 1, - anon_sym_COLON_EQ, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117032] = 2, + [116570] = 2, ACTIONS(4799), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117040] = 2, + [116578] = 2, ACTIONS(4801), 1, - anon_sym_COLON, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117048] = 2, + [116586] = 2, ACTIONS(4803), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117056] = 2, - ACTIONS(1467), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117064] = 2, + [116594] = 2, ACTIONS(4805), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117072] = 2, + [116602] = 2, ACTIONS(4807), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117080] = 2, + [116610] = 2, ACTIONS(4809), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117088] = 2, + [116618] = 2, ACTIONS(4811), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117096] = 2, + [116626] = 2, ACTIONS(4813), 1, - anon_sym_RPAREN, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117104] = 2, + [116634] = 2, ACTIONS(4815), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117112] = 2, + [116642] = 2, ACTIONS(4817), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117120] = 2, + [116650] = 2, ACTIONS(4819), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117128] = 2, + [116658] = 2, ACTIONS(4821), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117136] = 2, + [116666] = 2, + ACTIONS(3384), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116674] = 2, ACTIONS(4823), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117144] = 2, + [116682] = 2, ACTIONS(4825), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117152] = 2, + [116690] = 2, ACTIONS(4827), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117160] = 2, + [116698] = 2, ACTIONS(4829), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117168] = 2, + [116706] = 2, ACTIONS(4831), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117176] = 2, + [116714] = 2, ACTIONS(4833), 1, - anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116722] = 2, + ACTIONS(3374), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117184] = 2, + [116730] = 2, ACTIONS(4835), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117192] = 2, + [116738] = 2, ACTIONS(4837), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117200] = 2, - ACTIONS(3403), 1, - anon_sym_RBRACE, + [116746] = 2, + ACTIONS(3436), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117208] = 2, + [116754] = 2, ACTIONS(4839), 1, - anon_sym_COLON_EQ, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117216] = 2, + [116762] = 2, ACTIONS(4841), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117224] = 2, + [116770] = 2, ACTIONS(4843), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117232] = 2, + [116778] = 2, ACTIONS(4845), 1, - anon_sym_COLON, + anon_sym_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116786] = 2, + ACTIONS(3398), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117240] = 2, + [116794] = 2, ACTIONS(4847), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117248] = 2, + [116802] = 2, ACTIONS(4849), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117256] = 2, + [116810] = 2, ACTIONS(4851), 1, - anon_sym_COLON_EQ, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117264] = 2, + [116818] = 2, ACTIONS(4853), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117272] = 2, - ACTIONS(4855), 1, - sym_identifier, + [116826] = 2, + ACTIONS(4463), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117280] = 2, - ACTIONS(1473), 1, - anon_sym_def, + [116834] = 2, + ACTIONS(4855), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117288] = 2, - ACTIONS(4857), 1, - sym_identifier, + [116842] = 2, + ACTIONS(3422), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117296] = 2, - ACTIONS(3134), 1, - anon_sym_RPAREN, + [116850] = 2, + ACTIONS(4857), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117304] = 2, + [116858] = 2, ACTIONS(4859), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117312] = 2, + [116866] = 2, ACTIONS(4861), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117320] = 2, + [116874] = 2, ACTIONS(4863), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117328] = 2, + [116882] = 2, ACTIONS(4865), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117336] = 2, + [116890] = 2, ACTIONS(4867), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117344] = 2, + [116898] = 2, + ACTIONS(4469), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116906] = 2, ACTIONS(4869), 1, - anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116914] = 2, + ACTIONS(3424), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117352] = 2, + [116922] = 2, ACTIONS(4871), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117360] = 2, + [116930] = 2, ACTIONS(4873), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117368] = 2, + [116938] = 2, ACTIONS(4875), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117376] = 2, + [116946] = 2, ACTIONS(4877), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117384] = 2, + [116954] = 2, ACTIONS(4879), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117392] = 2, + [116962] = 2, ACTIONS(4881), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117400] = 2, + [116970] = 2, ACTIONS(4883), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117408] = 2, + [116978] = 2, ACTIONS(4885), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117416] = 2, + [116986] = 2, ACTIONS(4887), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117424] = 2, + [116994] = 2, ACTIONS(4889), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117432] = 2, - ACTIONS(4510), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117440] = 2, + [117002] = 2, ACTIONS(4891), 1, - anon_sym_for, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117448] = 2, - ACTIONS(3356), 1, - anon_sym_COLON, + [117010] = 2, + ACTIONS(4893), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117456] = 2, - ACTIONS(4893), 1, - anon_sym_RBRACE, + [117018] = 2, + ACTIONS(4367), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117464] = 2, + [117026] = 2, ACTIONS(4895), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117472] = 2, + [117034] = 2, ACTIONS(4897), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117480] = 2, + [117042] = 2, ACTIONS(4899), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117488] = 2, + [117050] = 2, ACTIONS(4901), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117496] = 2, - ACTIONS(3089), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117504] = 2, - ACTIONS(4512), 1, - anon_sym_in, + [117058] = 2, + ACTIONS(4903), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117512] = 2, - ACTIONS(4903), 1, - anon_sym_COLON, + [117066] = 2, + ACTIONS(4905), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117520] = 2, - ACTIONS(3362), 1, - anon_sym_COLON, + [117074] = 2, + ACTIONS(4907), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117528] = 2, - ACTIONS(4905), 1, - anon_sym_COLON, + [117082] = 2, + ACTIONS(4909), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117536] = 2, - ACTIONS(4907), 1, - anon_sym_RBRACK, + [117090] = 2, + ACTIONS(3092), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117544] = 2, - ACTIONS(4075), 1, + [117098] = 2, + ACTIONS(4485), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117552] = 2, - ACTIONS(3101), 1, - anon_sym_RPAREN, + [117106] = 2, + ACTIONS(3361), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117560] = 2, - ACTIONS(4909), 1, - sym_identifier, + [117114] = 2, + ACTIONS(4487), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117568] = 2, + [117122] = 2, ACTIONS(4911), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117576] = 2, + [117130] = 2, ACTIONS(4913), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117584] = 2, + [117138] = 2, ACTIONS(4915), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117146] = 2, + ACTIONS(3114), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117592] = 2, + [117154] = 2, ACTIONS(4917), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117600] = 2, + [117162] = 2, ACTIONS(4919), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117608] = 2, + [117170] = 2, ACTIONS(4921), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117616] = 2, + [117178] = 2, ACTIONS(4923), 1, - anon_sym_RBRACK, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117624] = 2, + [117186] = 2, ACTIONS(4925), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117632] = 2, - ACTIONS(3383), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117640] = 2, + [117194] = 2, ACTIONS(4927), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117648] = 2, + [117202] = 2, ACTIONS(4929), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117656] = 2, - ACTIONS(4931), 1, - anon_sym_in, + [117210] = 2, + ACTIONS(1465), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117664] = 2, - ACTIONS(4933), 1, - anon_sym_RBRACE, + [117218] = 2, + ACTIONS(4931), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117672] = 2, - ACTIONS(4935), 1, + [117226] = 2, + ACTIONS(3102), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117680] = 2, - ACTIONS(3420), 1, - anon_sym_RBRACE, + [117234] = 2, + ACTIONS(4933), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117688] = 2, - ACTIONS(4937), 1, - ts_builtin_sym_end, + [117242] = 2, + ACTIONS(4935), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117696] = 2, - ACTIONS(4939), 1, - anon_sym_import, + [117250] = 2, + ACTIONS(4937), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117704] = 2, - ACTIONS(4534), 1, - anon_sym_in, + [117258] = 2, + ACTIONS(4939), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117712] = 2, + [117266] = 2, ACTIONS(4941), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117720] = 2, - ACTIONS(4536), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117728] = 2, + [117274] = 2, ACTIONS(4943), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117736] = 2, + [117282] = 2, ACTIONS(4945), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117744] = 2, + [117290] = 2, ACTIONS(4947), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117752] = 2, + [117298] = 2, ACTIONS(4949), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117760] = 2, + [117306] = 2, ACTIONS(4951), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117768] = 2, + [117314] = 2, ACTIONS(4953), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117776] = 2, + [117322] = 2, ACTIONS(4955), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117784] = 2, + [117330] = 2, ACTIONS(4957), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117792] = 2, + [117338] = 2, + ACTIONS(3058), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117346] = 2, + ACTIONS(3388), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117354] = 2, ACTIONS(4959), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117800] = 2, + [117362] = 2, ACTIONS(4961), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117808] = 2, + [117370] = 2, ACTIONS(4963), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117816] = 2, + [117378] = 2, ACTIONS(4965), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117824] = 2, + [117386] = 2, ACTIONS(4967), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117832] = 2, + [117394] = 2, ACTIONS(4969), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117840] = 2, + [117402] = 2, ACTIONS(4971), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117848] = 2, + [117410] = 2, + ACTIONS(4132), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117418] = 2, ACTIONS(4973), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117856] = 2, + [117426] = 2, ACTIONS(4975), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117864] = 2, + [117434] = 2, ACTIONS(4977), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117872] = 2, + [117442] = 2, ACTIONS(4979), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117880] = 2, + [117450] = 2, ACTIONS(4981), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117888] = 2, + [117458] = 2, ACTIONS(4983), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117896] = 2, + [117466] = 2, ACTIONS(4985), 1, - anon_sym_RBRACE, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117904] = 2, + [117474] = 2, ACTIONS(4987), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117912] = 2, - ACTIONS(3399), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117920] = 2, + [117482] = 2, ACTIONS(4989), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117928] = 2, + [117490] = 2, ACTIONS(4991), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117936] = 2, - ACTIONS(4993), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117944] = 2, - ACTIONS(4995), 1, - anon_sym_RBRACE, + [117498] = 2, + ACTIONS(4369), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117952] = 2, - ACTIONS(4997), 1, + [117506] = 2, + ACTIONS(4993), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117960] = 2, - ACTIONS(4999), 1, + [117514] = 2, + ACTIONS(4995), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117968] = 2, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117976] = 2, - ACTIONS(5003), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117984] = 2, - ACTIONS(5005), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117992] = 2, - ACTIONS(3058), 1, - anon_sym_RPAREN, + [117522] = 2, + ACTIONS(4997), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118000] = 2, - ACTIONS(5007), 1, + [117530] = 2, + ACTIONS(4999), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118008] = 2, - ACTIONS(5009), 1, + [117538] = 2, + ACTIONS(3394), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118016] = 2, - ACTIONS(5011), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118024] = 2, - ACTIONS(5013), 1, + [117546] = 2, + ACTIONS(5001), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118032] = 2, - ACTIONS(4555), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118040] = 2, - ACTIONS(5015), 1, + [117554] = 2, + ACTIONS(5003), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118048] = 2, - ACTIONS(3409), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118056] = 2, - ACTIONS(5017), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118064] = 2, - ACTIONS(3370), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118072] = 2, - ACTIONS(3028), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118080] = 2, - ACTIONS(5019), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118088] = 2, - ACTIONS(3124), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118096] = 2, - ACTIONS(4159), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118104] = 2, - ACTIONS(5021), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118112] = 2, - ACTIONS(3435), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118120] = 2, - ACTIONS(5023), 1, + [117562] = 2, + ACTIONS(5005), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118128] = 2, - ACTIONS(5025), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118136] = 2, - ACTIONS(5027), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118144] = 2, - ACTIONS(5029), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118152] = 2, - ACTIONS(5031), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118160] = 2, - ACTIONS(5033), 1, + [117570] = 2, + ACTIONS(5007), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118168] = 2, - ACTIONS(5035), 1, + [117578] = 2, + ACTIONS(5009), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118176] = 2, - ACTIONS(5037), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118184] = 2, - ACTIONS(5039), 1, + [117586] = 2, + ACTIONS(5011), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118192] = 2, - ACTIONS(4115), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118200] = 2, - ACTIONS(5041), 1, - sym_identifier, + [117594] = 2, + ACTIONS(5013), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118208] = 2, - ACTIONS(5043), 1, + [117602] = 2, + ACTIONS(5015), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118216] = 2, - ACTIONS(5045), 1, + [117610] = 2, + ACTIONS(5017), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118224] = 2, - ACTIONS(5047), 1, - anon_sym_RBRACK, + [117618] = 2, + ACTIONS(5019), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118232] = 2, - ACTIONS(4573), 1, + [117626] = 2, + ACTIONS(4547), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118240] = 2, - ACTIONS(1491), 1, + [117634] = 2, + ACTIONS(1457), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118248] = 2, - ACTIONS(5049), 1, + [117642] = 2, + ACTIONS(5021), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118256] = 2, - ACTIONS(5051), 1, - sym_identifier, + [117650] = 2, + ACTIONS(3070), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118264] = 2, - ACTIONS(4575), 1, + [117658] = 2, + ACTIONS(4549), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118272] = 2, - ACTIONS(5053), 1, + [117666] = 2, + ACTIONS(5023), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118280] = 2, - ACTIONS(5055), 1, + [117674] = 2, + ACTIONS(5025), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118288] = 2, - ACTIONS(3366), 1, - anon_sym_RBRACE, + [117682] = 2, + ACTIONS(5027), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118296] = 2, - ACTIONS(5057), 1, - sym_identifier, + [117690] = 2, + ACTIONS(5029), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(190)] = 0, - [SMALL_STATE(191)] = 124, - [SMALL_STATE(192)] = 250, - [SMALL_STATE(193)] = 374, - [SMALL_STATE(194)] = 498, - [SMALL_STATE(195)] = 622, - [SMALL_STATE(196)] = 748, - [SMALL_STATE(197)] = 872, - [SMALL_STATE(198)] = 996, - [SMALL_STATE(199)] = 1124, - [SMALL_STATE(200)] = 1252, - [SMALL_STATE(201)] = 1378, - [SMALL_STATE(202)] = 1502, - [SMALL_STATE(203)] = 1626, - [SMALL_STATE(204)] = 1752, - [SMALL_STATE(205)] = 1876, - [SMALL_STATE(206)] = 2000, - [SMALL_STATE(207)] = 2124, - [SMALL_STATE(208)] = 2250, - [SMALL_STATE(209)] = 2374, - [SMALL_STATE(210)] = 2498, - [SMALL_STATE(211)] = 2624, - [SMALL_STATE(212)] = 2750, - [SMALL_STATE(213)] = 2870, - [SMALL_STATE(214)] = 2996, - [SMALL_STATE(215)] = 3120, - [SMALL_STATE(216)] = 3244, - [SMALL_STATE(217)] = 3368, - [SMALL_STATE(218)] = 3488, - [SMALL_STATE(219)] = 3608, - [SMALL_STATE(220)] = 3734, - [SMALL_STATE(221)] = 3858, - [SMALL_STATE(222)] = 3982, - [SMALL_STATE(223)] = 4106, - [SMALL_STATE(224)] = 4213, - [SMALL_STATE(225)] = 4320, - [SMALL_STATE(226)] = 4436, - [SMALL_STATE(227)] = 4552, - [SMALL_STATE(228)] = 4668, - [SMALL_STATE(229)] = 4784, - [SMALL_STATE(230)] = 4900, - [SMALL_STATE(231)] = 5016, - [SMALL_STATE(232)] = 5132, - [SMALL_STATE(233)] = 5248, - [SMALL_STATE(234)] = 5364, - [SMALL_STATE(235)] = 5480, - [SMALL_STATE(236)] = 5593, - [SMALL_STATE(237)] = 5706, - [SMALL_STATE(238)] = 5819, - [SMALL_STATE(239)] = 5932, - [SMALL_STATE(240)] = 6049, - [SMALL_STATE(241)] = 6162, - [SMALL_STATE(242)] = 6275, - [SMALL_STATE(243)] = 6388, - [SMALL_STATE(244)] = 6501, - [SMALL_STATE(245)] = 6616, - [SMALL_STATE(246)] = 6727, - [SMALL_STATE(247)] = 6842, - [SMALL_STATE(248)] = 6957, - [SMALL_STATE(249)] = 7070, - [SMALL_STATE(250)] = 7175, - [SMALL_STATE(251)] = 7290, - [SMALL_STATE(252)] = 7403, - [SMALL_STATE(253)] = 7518, - [SMALL_STATE(254)] = 7631, - [SMALL_STATE(255)] = 7744, - [SMALL_STATE(256)] = 7857, - [SMALL_STATE(257)] = 7972, - [SMALL_STATE(258)] = 8085, - [SMALL_STATE(259)] = 8198, - [SMALL_STATE(260)] = 8313, - [SMALL_STATE(261)] = 8426, - [SMALL_STATE(262)] = 8539, - [SMALL_STATE(263)] = 8654, - [SMALL_STATE(264)] = 8767, - [SMALL_STATE(265)] = 8882, - [SMALL_STATE(266)] = 8995, - [SMALL_STATE(267)] = 9108, - [SMALL_STATE(268)] = 9221, - [SMALL_STATE(269)] = 9326, - [SMALL_STATE(270)] = 9439, - [SMALL_STATE(271)] = 9552, - [SMALL_STATE(272)] = 9665, - [SMALL_STATE(273)] = 9778, - [SMALL_STATE(274)] = 9890, - [SMALL_STATE(275)] = 10006, - [SMALL_STATE(276)] = 10118, - [SMALL_STATE(277)] = 10230, - [SMALL_STATE(278)] = 10346, - [SMALL_STATE(279)] = 10458, - [SMALL_STATE(280)] = 10570, - [SMALL_STATE(281)] = 10682, - [SMALL_STATE(282)] = 10794, - [SMALL_STATE(283)] = 10906, - [SMALL_STATE(284)] = 11018, - [SMALL_STATE(285)] = 11132, - [SMALL_STATE(286)] = 11244, - [SMALL_STATE(287)] = 11360, - [SMALL_STATE(288)] = 11472, - [SMALL_STATE(289)] = 11584, - [SMALL_STATE(290)] = 11696, - [SMALL_STATE(291)] = 11808, - [SMALL_STATE(292)] = 11920, - [SMALL_STATE(293)] = 12032, - [SMALL_STATE(294)] = 12144, - [SMALL_STATE(295)] = 12256, - [SMALL_STATE(296)] = 12370, - [SMALL_STATE(297)] = 12484, - [SMALL_STATE(298)] = 12596, - [SMALL_STATE(299)] = 12708, - [SMALL_STATE(300)] = 12820, - [SMALL_STATE(301)] = 12932, - [SMALL_STATE(302)] = 13044, - [SMALL_STATE(303)] = 13156, - [SMALL_STATE(304)] = 13268, - [SMALL_STATE(305)] = 13380, - [SMALL_STATE(306)] = 13494, - [SMALL_STATE(307)] = 13606, - [SMALL_STATE(308)] = 13720, - [SMALL_STATE(309)] = 13832, - [SMALL_STATE(310)] = 13948, - [SMALL_STATE(311)] = 14062, - [SMALL_STATE(312)] = 14174, - [SMALL_STATE(313)] = 14286, - [SMALL_STATE(314)] = 14398, - [SMALL_STATE(315)] = 14510, - [SMALL_STATE(316)] = 14622, - [SMALL_STATE(317)] = 14738, - [SMALL_STATE(318)] = 14854, - [SMALL_STATE(319)] = 14966, - [SMALL_STATE(320)] = 15078, - [SMALL_STATE(321)] = 15192, - [SMALL_STATE(322)] = 15304, - [SMALL_STATE(323)] = 15416, - [SMALL_STATE(324)] = 15528, - [SMALL_STATE(325)] = 15640, - [SMALL_STATE(326)] = 15754, - [SMALL_STATE(327)] = 15866, - [SMALL_STATE(328)] = 15975, - [SMALL_STATE(329)] = 16084, - [SMALL_STATE(330)] = 16193, - [SMALL_STATE(331)] = 16302, - [SMALL_STATE(332)] = 16411, - [SMALL_STATE(333)] = 16520, - [SMALL_STATE(334)] = 16625, - [SMALL_STATE(335)] = 16734, - [SMALL_STATE(336)] = 16843, - [SMALL_STATE(337)] = 16952, - [SMALL_STATE(338)] = 17061, - [SMALL_STATE(339)] = 17170, - [SMALL_STATE(340)] = 17279, - [SMALL_STATE(341)] = 17384, - [SMALL_STATE(342)] = 17493, - [SMALL_STATE(343)] = 17602, - [SMALL_STATE(344)] = 17711, - [SMALL_STATE(345)] = 17820, - [SMALL_STATE(346)] = 17929, - [SMALL_STATE(347)] = 18038, - [SMALL_STATE(348)] = 18135, - [SMALL_STATE(349)] = 18244, - [SMALL_STATE(350)] = 18350, - [SMALL_STATE(351)] = 18458, - [SMALL_STATE(352)] = 18566, - [SMALL_STATE(353)] = 18674, - [SMALL_STATE(354)] = 18782, - [SMALL_STATE(355)] = 18890, - [SMALL_STATE(356)] = 18998, - [SMALL_STATE(357)] = 19106, - [SMALL_STATE(358)] = 19214, - [SMALL_STATE(359)] = 19322, - [SMALL_STATE(360)] = 19430, - [SMALL_STATE(361)] = 19538, - [SMALL_STATE(362)] = 19646, - [SMALL_STATE(363)] = 19754, - [SMALL_STATE(364)] = 19862, - [SMALL_STATE(365)] = 19968, - [SMALL_STATE(366)] = 20076, - [SMALL_STATE(367)] = 20184, - [SMALL_STATE(368)] = 20292, - [SMALL_STATE(369)] = 20400, - [SMALL_STATE(370)] = 20508, - [SMALL_STATE(371)] = 20616, - [SMALL_STATE(372)] = 20722, - [SMALL_STATE(373)] = 20817, - [SMALL_STATE(374)] = 20924, - [SMALL_STATE(375)] = 21031, - [SMALL_STATE(376)] = 21138, - [SMALL_STATE(377)] = 21243, - [SMALL_STATE(378)] = 21350, - [SMALL_STATE(379)] = 21457, - [SMALL_STATE(380)] = 21564, - [SMALL_STATE(381)] = 21669, - [SMALL_STATE(382)] = 21776, - [SMALL_STATE(383)] = 21883, - [SMALL_STATE(384)] = 21990, - [SMALL_STATE(385)] = 22097, - [SMALL_STATE(386)] = 22204, - [SMALL_STATE(387)] = 22311, - [SMALL_STATE(388)] = 22418, - [SMALL_STATE(389)] = 22525, - [SMALL_STATE(390)] = 22632, - [SMALL_STATE(391)] = 22739, - [SMALL_STATE(392)] = 22846, - [SMALL_STATE(393)] = 22953, - [SMALL_STATE(394)] = 23060, - [SMALL_STATE(395)] = 23167, - [SMALL_STATE(396)] = 23274, - [SMALL_STATE(397)] = 23381, - [SMALL_STATE(398)] = 23486, - [SMALL_STATE(399)] = 23593, - [SMALL_STATE(400)] = 23698, - [SMALL_STATE(401)] = 23805, - [SMALL_STATE(402)] = 23912, - [SMALL_STATE(403)] = 24017, - [SMALL_STATE(404)] = 24122, - [SMALL_STATE(405)] = 24229, - [SMALL_STATE(406)] = 24336, - [SMALL_STATE(407)] = 24443, - [SMALL_STATE(408)] = 24538, - [SMALL_STATE(409)] = 24645, - [SMALL_STATE(410)] = 24752, - [SMALL_STATE(411)] = 24856, - [SMALL_STATE(412)] = 24958, - [SMALL_STATE(413)] = 25060, - [SMALL_STATE(414)] = 25162, - [SMALL_STATE(415)] = 25264, - [SMALL_STATE(416)] = 25366, - [SMALL_STATE(417)] = 25460, - [SMALL_STATE(418)] = 25554, - [SMALL_STATE(419)] = 25656, - [SMALL_STATE(420)] = 25758, - [SMALL_STATE(421)] = 25862, - [SMALL_STATE(422)] = 25966, - [SMALL_STATE(423)] = 26068, - [SMALL_STATE(424)] = 26172, - [SMALL_STATE(425)] = 26274, - [SMALL_STATE(426)] = 26376, - [SMALL_STATE(427)] = 26478, - [SMALL_STATE(428)] = 26580, - [SMALL_STATE(429)] = 26682, - [SMALL_STATE(430)] = 26786, - [SMALL_STATE(431)] = 26888, - [SMALL_STATE(432)] = 26990, - [SMALL_STATE(433)] = 27094, - [SMALL_STATE(434)] = 27196, - [SMALL_STATE(435)] = 27300, - [SMALL_STATE(436)] = 27402, - [SMALL_STATE(437)] = 27496, - [SMALL_STATE(438)] = 27600, - [SMALL_STATE(439)] = 27702, - [SMALL_STATE(440)] = 27798, - [SMALL_STATE(441)] = 27900, - [SMALL_STATE(442)] = 28002, - [SMALL_STATE(443)] = 28104, - [SMALL_STATE(444)] = 28206, - [SMALL_STATE(445)] = 28308, - [SMALL_STATE(446)] = 28410, - [SMALL_STATE(447)] = 28512, - [SMALL_STATE(448)] = 28614, - [SMALL_STATE(449)] = 28716, - [SMALL_STATE(450)] = 28810, - [SMALL_STATE(451)] = 28914, - [SMALL_STATE(452)] = 29018, - [SMALL_STATE(453)] = 29122, - [SMALL_STATE(454)] = 29226, - [SMALL_STATE(455)] = 29330, - [SMALL_STATE(456)] = 29434, - [SMALL_STATE(457)] = 29538, - [SMALL_STATE(458)] = 29642, - [SMALL_STATE(459)] = 29746, - [SMALL_STATE(460)] = 29850, - [SMALL_STATE(461)] = 29954, - [SMALL_STATE(462)] = 30056, - [SMALL_STATE(463)] = 30131, - [SMALL_STATE(464)] = 30232, - [SMALL_STATE(465)] = 30333, - [SMALL_STATE(466)] = 30434, - [SMALL_STATE(467)] = 30535, - [SMALL_STATE(468)] = 30636, - [SMALL_STATE(469)] = 30737, - [SMALL_STATE(470)] = 30838, - [SMALL_STATE(471)] = 30939, - [SMALL_STATE(472)] = 31014, - [SMALL_STATE(473)] = 31115, - [SMALL_STATE(474)] = 31216, - [SMALL_STATE(475)] = 31317, - [SMALL_STATE(476)] = 31418, - [SMALL_STATE(477)] = 31495, - [SMALL_STATE(478)] = 31570, - [SMALL_STATE(479)] = 31671, - [SMALL_STATE(480)] = 31772, - [SMALL_STATE(481)] = 31873, - [SMALL_STATE(482)] = 31971, - [SMALL_STATE(483)] = 32069, - [SMALL_STATE(484)] = 32167, - [SMALL_STATE(485)] = 32265, - [SMALL_STATE(486)] = 32363, - [SMALL_STATE(487)] = 32461, - [SMALL_STATE(488)] = 32559, - [SMALL_STATE(489)] = 32657, - [SMALL_STATE(490)] = 32755, - [SMALL_STATE(491)] = 32853, - [SMALL_STATE(492)] = 32951, - [SMALL_STATE(493)] = 33049, - [SMALL_STATE(494)] = 33147, - [SMALL_STATE(495)] = 33245, - [SMALL_STATE(496)] = 33317, - [SMALL_STATE(497)] = 33415, - [SMALL_STATE(498)] = 33513, - [SMALL_STATE(499)] = 33611, - [SMALL_STATE(500)] = 33709, - [SMALL_STATE(501)] = 33807, - [SMALL_STATE(502)] = 33905, - [SMALL_STATE(503)] = 34003, - [SMALL_STATE(504)] = 34075, - [SMALL_STATE(505)] = 34173, - [SMALL_STATE(506)] = 34271, - [SMALL_STATE(507)] = 34369, - [SMALL_STATE(508)] = 34467, - [SMALL_STATE(509)] = 34565, - [SMALL_STATE(510)] = 34663, - [SMALL_STATE(511)] = 34761, - [SMALL_STATE(512)] = 34859, - [SMALL_STATE(513)] = 34957, - [SMALL_STATE(514)] = 35057, - [SMALL_STATE(515)] = 35155, - [SMALL_STATE(516)] = 35253, - [SMALL_STATE(517)] = 35351, - [SMALL_STATE(518)] = 35449, - [SMALL_STATE(519)] = 35547, - [SMALL_STATE(520)] = 35645, - [SMALL_STATE(521)] = 35743, - [SMALL_STATE(522)] = 35841, - [SMALL_STATE(523)] = 35939, - [SMALL_STATE(524)] = 36037, - [SMALL_STATE(525)] = 36135, - [SMALL_STATE(526)] = 36235, - [SMALL_STATE(527)] = 36333, - [SMALL_STATE(528)] = 36431, - [SMALL_STATE(529)] = 36529, - [SMALL_STATE(530)] = 36627, - [SMALL_STATE(531)] = 36725, - [SMALL_STATE(532)] = 36823, - [SMALL_STATE(533)] = 36921, - [SMALL_STATE(534)] = 37019, - [SMALL_STATE(535)] = 37117, - [SMALL_STATE(536)] = 37215, - [SMALL_STATE(537)] = 37313, - [SMALL_STATE(538)] = 37411, - [SMALL_STATE(539)] = 37509, - [SMALL_STATE(540)] = 37607, - [SMALL_STATE(541)] = 37705, - [SMALL_STATE(542)] = 37803, - [SMALL_STATE(543)] = 37901, - [SMALL_STATE(544)] = 37999, - [SMALL_STATE(545)] = 38097, - [SMALL_STATE(546)] = 38197, - [SMALL_STATE(547)] = 38295, - [SMALL_STATE(548)] = 38393, - [SMALL_STATE(549)] = 38491, - [SMALL_STATE(550)] = 38589, - [SMALL_STATE(551)] = 38687, - [SMALL_STATE(552)] = 38785, - [SMALL_STATE(553)] = 38883, - [SMALL_STATE(554)] = 38981, - [SMALL_STATE(555)] = 39079, - [SMALL_STATE(556)] = 39177, - [SMALL_STATE(557)] = 39275, - [SMALL_STATE(558)] = 39373, - [SMALL_STATE(559)] = 39473, - [SMALL_STATE(560)] = 39571, - [SMALL_STATE(561)] = 39669, - [SMALL_STATE(562)] = 39767, - [SMALL_STATE(563)] = 39865, - [SMALL_STATE(564)] = 39963, - [SMALL_STATE(565)] = 40061, - [SMALL_STATE(566)] = 40161, - [SMALL_STATE(567)] = 40261, - [SMALL_STATE(568)] = 40359, - [SMALL_STATE(569)] = 40457, - [SMALL_STATE(570)] = 40557, - [SMALL_STATE(571)] = 40655, - [SMALL_STATE(572)] = 40753, - [SMALL_STATE(573)] = 40825, - [SMALL_STATE(574)] = 40897, - [SMALL_STATE(575)] = 40995, - [SMALL_STATE(576)] = 41093, - [SMALL_STATE(577)] = 41191, - [SMALL_STATE(578)] = 41289, - [SMALL_STATE(579)] = 41387, - [SMALL_STATE(580)] = 41485, - [SMALL_STATE(581)] = 41583, - [SMALL_STATE(582)] = 41681, - [SMALL_STATE(583)] = 41779, - [SMALL_STATE(584)] = 41877, - [SMALL_STATE(585)] = 41975, - [SMALL_STATE(586)] = 42073, - [SMALL_STATE(587)] = 42171, - [SMALL_STATE(588)] = 42269, - [SMALL_STATE(589)] = 42341, - [SMALL_STATE(590)] = 42413, - [SMALL_STATE(591)] = 42511, - [SMALL_STATE(592)] = 42609, - [SMALL_STATE(593)] = 42707, - [SMALL_STATE(594)] = 42805, - [SMALL_STATE(595)] = 42903, - [SMALL_STATE(596)] = 43001, - [SMALL_STATE(597)] = 43099, - [SMALL_STATE(598)] = 43197, - [SMALL_STATE(599)] = 43295, - [SMALL_STATE(600)] = 43393, - [SMALL_STATE(601)] = 43491, - [SMALL_STATE(602)] = 43589, - [SMALL_STATE(603)] = 43687, - [SMALL_STATE(604)] = 43785, - [SMALL_STATE(605)] = 43883, - [SMALL_STATE(606)] = 43981, - [SMALL_STATE(607)] = 44079, - [SMALL_STATE(608)] = 44151, - [SMALL_STATE(609)] = 44223, - [SMALL_STATE(610)] = 44321, - [SMALL_STATE(611)] = 44419, - [SMALL_STATE(612)] = 44492, - [SMALL_STATE(613)] = 44558, - [SMALL_STATE(614)] = 44620, - [SMALL_STATE(615)] = 44688, - [SMALL_STATE(616)] = 44756, - [SMALL_STATE(617)] = 44822, - [SMALL_STATE(618)] = 44890, - [SMALL_STATE(619)] = 44958, - [SMALL_STATE(620)] = 45026, - [SMALL_STATE(621)] = 45094, - [SMALL_STATE(622)] = 45162, - [SMALL_STATE(623)] = 45230, - [SMALL_STATE(624)] = 45298, - [SMALL_STATE(625)] = 45364, - [SMALL_STATE(626)] = 45432, - [SMALL_STATE(627)] = 45494, - [SMALL_STATE(628)] = 45556, - [SMALL_STATE(629)] = 45618, - [SMALL_STATE(630)] = 45681, - [SMALL_STATE(631)] = 45744, - [SMALL_STATE(632)] = 45805, - [SMALL_STATE(633)] = 45866, - [SMALL_STATE(634)] = 45929, - [SMALL_STATE(635)] = 45986, - [SMALL_STATE(636)] = 46043, - [SMALL_STATE(637)] = 46100, - [SMALL_STATE(638)] = 46157, - [SMALL_STATE(639)] = 46220, - [SMALL_STATE(640)] = 46281, - [SMALL_STATE(641)] = 46344, - [SMALL_STATE(642)] = 46407, - [SMALL_STATE(643)] = 46464, - [SMALL_STATE(644)] = 46529, - [SMALL_STATE(645)] = 46592, - [SMALL_STATE(646)] = 46655, - [SMALL_STATE(647)] = 46718, - [SMALL_STATE(648)] = 46781, - [SMALL_STATE(649)] = 46838, - [SMALL_STATE(650)] = 46895, - [SMALL_STATE(651)] = 46951, - [SMALL_STATE(652)] = 47007, - [SMALL_STATE(653)] = 47099, - [SMALL_STATE(654)] = 47155, - [SMALL_STATE(655)] = 47211, - [SMALL_STATE(656)] = 47267, - [SMALL_STATE(657)] = 47323, - [SMALL_STATE(658)] = 47379, - [SMALL_STATE(659)] = 47435, - [SMALL_STATE(660)] = 47491, - [SMALL_STATE(661)] = 47547, - [SMALL_STATE(662)] = 47603, - [SMALL_STATE(663)] = 47659, - [SMALL_STATE(664)] = 47715, - [SMALL_STATE(665)] = 47771, - [SMALL_STATE(666)] = 47827, - [SMALL_STATE(667)] = 47883, - [SMALL_STATE(668)] = 47939, - [SMALL_STATE(669)] = 47995, - [SMALL_STATE(670)] = 48051, - [SMALL_STATE(671)] = 48107, - [SMALL_STATE(672)] = 48163, - [SMALL_STATE(673)] = 48219, - [SMALL_STATE(674)] = 48275, - [SMALL_STATE(675)] = 48331, - [SMALL_STATE(676)] = 48387, - [SMALL_STATE(677)] = 48443, - [SMALL_STATE(678)] = 48499, - [SMALL_STATE(679)] = 48555, - [SMALL_STATE(680)] = 48611, - [SMALL_STATE(681)] = 48667, - [SMALL_STATE(682)] = 48723, - [SMALL_STATE(683)] = 48779, - [SMALL_STATE(684)] = 48835, - [SMALL_STATE(685)] = 48891, - [SMALL_STATE(686)] = 48983, - [SMALL_STATE(687)] = 49039, - [SMALL_STATE(688)] = 49095, - [SMALL_STATE(689)] = 49151, - [SMALL_STATE(690)] = 49207, - [SMALL_STATE(691)] = 49263, - [SMALL_STATE(692)] = 49319, - [SMALL_STATE(693)] = 49375, - [SMALL_STATE(694)] = 49431, - [SMALL_STATE(695)] = 49487, - [SMALL_STATE(696)] = 49543, - [SMALL_STATE(697)] = 49599, - [SMALL_STATE(698)] = 49655, - [SMALL_STATE(699)] = 49711, - [SMALL_STATE(700)] = 49767, - [SMALL_STATE(701)] = 49823, - [SMALL_STATE(702)] = 49879, - [SMALL_STATE(703)] = 49934, - [SMALL_STATE(704)] = 49993, - [SMALL_STATE(705)] = 50052, - [SMALL_STATE(706)] = 50111, - [SMALL_STATE(707)] = 50170, - [SMALL_STATE(708)] = 50229, - [SMALL_STATE(709)] = 50288, - [SMALL_STATE(710)] = 50347, - [SMALL_STATE(711)] = 50406, - [SMALL_STATE(712)] = 50465, - [SMALL_STATE(713)] = 50524, - [SMALL_STATE(714)] = 50579, - [SMALL_STATE(715)] = 50638, - [SMALL_STATE(716)] = 50697, - [SMALL_STATE(717)] = 50752, - [SMALL_STATE(718)] = 50807, - [SMALL_STATE(719)] = 50866, - [SMALL_STATE(720)] = 50921, - [SMALL_STATE(721)] = 50980, - [SMALL_STATE(722)] = 51039, - [SMALL_STATE(723)] = 51094, - [SMALL_STATE(724)] = 51153, - [SMALL_STATE(725)] = 51207, - [SMALL_STATE(726)] = 51261, - [SMALL_STATE(727)] = 51315, - [SMALL_STATE(728)] = 51407, - [SMALL_STATE(729)] = 51499, - [SMALL_STATE(730)] = 51553, - [SMALL_STATE(731)] = 51606, - [SMALL_STATE(732)] = 51659, - [SMALL_STATE(733)] = 51712, - [SMALL_STATE(734)] = 51765, - [SMALL_STATE(735)] = 51818, - [SMALL_STATE(736)] = 51871, - [SMALL_STATE(737)] = 51924, - [SMALL_STATE(738)] = 51977, - [SMALL_STATE(739)] = 52030, - [SMALL_STATE(740)] = 52083, - [SMALL_STATE(741)] = 52136, - [SMALL_STATE(742)] = 52189, - [SMALL_STATE(743)] = 52278, - [SMALL_STATE(744)] = 52331, - [SMALL_STATE(745)] = 52384, - [SMALL_STATE(746)] = 52437, - [SMALL_STATE(747)] = 52490, - [SMALL_STATE(748)] = 52543, - [SMALL_STATE(749)] = 52596, - [SMALL_STATE(750)] = 52649, - [SMALL_STATE(751)] = 52702, - [SMALL_STATE(752)] = 52755, - [SMALL_STATE(753)] = 52808, - [SMALL_STATE(754)] = 52861, - [SMALL_STATE(755)] = 52914, - [SMALL_STATE(756)] = 52967, - [SMALL_STATE(757)] = 53020, - [SMALL_STATE(758)] = 53073, - [SMALL_STATE(759)] = 53126, - [SMALL_STATE(760)] = 53179, - [SMALL_STATE(761)] = 53232, - [SMALL_STATE(762)] = 53285, - [SMALL_STATE(763)] = 53338, - [SMALL_STATE(764)] = 53391, - [SMALL_STATE(765)] = 53444, - [SMALL_STATE(766)] = 53497, - [SMALL_STATE(767)] = 53550, - [SMALL_STATE(768)] = 53603, - [SMALL_STATE(769)] = 53656, - [SMALL_STATE(770)] = 53745, - [SMALL_STATE(771)] = 53798, - [SMALL_STATE(772)] = 53887, - [SMALL_STATE(773)] = 53940, - [SMALL_STATE(774)] = 53993, - [SMALL_STATE(775)] = 54046, - [SMALL_STATE(776)] = 54099, - [SMALL_STATE(777)] = 54152, - [SMALL_STATE(778)] = 54205, - [SMALL_STATE(779)] = 54258, - [SMALL_STATE(780)] = 54311, - [SMALL_STATE(781)] = 54364, - [SMALL_STATE(782)] = 54417, - [SMALL_STATE(783)] = 54470, - [SMALL_STATE(784)] = 54523, - [SMALL_STATE(785)] = 54576, - [SMALL_STATE(786)] = 54629, - [SMALL_STATE(787)] = 54682, - [SMALL_STATE(788)] = 54735, - [SMALL_STATE(789)] = 54788, - [SMALL_STATE(790)] = 54841, - [SMALL_STATE(791)] = 54894, - [SMALL_STATE(792)] = 54947, - [SMALL_STATE(793)] = 55000, - [SMALL_STATE(794)] = 55053, - [SMALL_STATE(795)] = 55106, - [SMALL_STATE(796)] = 55195, - [SMALL_STATE(797)] = 55248, - [SMALL_STATE(798)] = 55301, - [SMALL_STATE(799)] = 55354, - [SMALL_STATE(800)] = 55407, - [SMALL_STATE(801)] = 55460, - [SMALL_STATE(802)] = 55513, - [SMALL_STATE(803)] = 55566, - [SMALL_STATE(804)] = 55619, - [SMALL_STATE(805)] = 55708, - [SMALL_STATE(806)] = 55761, - [SMALL_STATE(807)] = 55814, - [SMALL_STATE(808)] = 55867, - [SMALL_STATE(809)] = 55956, - [SMALL_STATE(810)] = 56009, - [SMALL_STATE(811)] = 56098, - [SMALL_STATE(812)] = 56151, - [SMALL_STATE(813)] = 56204, - [SMALL_STATE(814)] = 56257, - [SMALL_STATE(815)] = 56310, - [SMALL_STATE(816)] = 56363, - [SMALL_STATE(817)] = 56416, - [SMALL_STATE(818)] = 56469, - [SMALL_STATE(819)] = 56522, - [SMALL_STATE(820)] = 56575, - [SMALL_STATE(821)] = 56628, - [SMALL_STATE(822)] = 56681, - [SMALL_STATE(823)] = 56734, - [SMALL_STATE(824)] = 56787, - [SMALL_STATE(825)] = 56840, - [SMALL_STATE(826)] = 56893, - [SMALL_STATE(827)] = 56946, - [SMALL_STATE(828)] = 56999, - [SMALL_STATE(829)] = 57088, - [SMALL_STATE(830)] = 57141, - [SMALL_STATE(831)] = 57194, - [SMALL_STATE(832)] = 57247, - [SMALL_STATE(833)] = 57300, - [SMALL_STATE(834)] = 57353, - [SMALL_STATE(835)] = 57406, - [SMALL_STATE(836)] = 57459, - [SMALL_STATE(837)] = 57512, - [SMALL_STATE(838)] = 57601, - [SMALL_STATE(839)] = 57654, - [SMALL_STATE(840)] = 57707, - [SMALL_STATE(841)] = 57796, - [SMALL_STATE(842)] = 57885, - [SMALL_STATE(843)] = 57974, - [SMALL_STATE(844)] = 58027, - [SMALL_STATE(845)] = 58080, - [SMALL_STATE(846)] = 58133, - [SMALL_STATE(847)] = 58186, - [SMALL_STATE(848)] = 58239, - [SMALL_STATE(849)] = 58292, - [SMALL_STATE(850)] = 58345, - [SMALL_STATE(851)] = 58434, - [SMALL_STATE(852)] = 58523, - [SMALL_STATE(853)] = 58612, - [SMALL_STATE(854)] = 58701, - [SMALL_STATE(855)] = 58787, - [SMALL_STATE(856)] = 58873, - [SMALL_STATE(857)] = 58959, - [SMALL_STATE(858)] = 59045, - [SMALL_STATE(859)] = 59131, - [SMALL_STATE(860)] = 59217, - [SMALL_STATE(861)] = 59300, - [SMALL_STATE(862)] = 59383, - [SMALL_STATE(863)] = 59461, - [SMALL_STATE(864)] = 59539, - [SMALL_STATE(865)] = 59617, - [SMALL_STATE(866)] = 59695, - [SMALL_STATE(867)] = 59773, - [SMALL_STATE(868)] = 59851, - [SMALL_STATE(869)] = 59929, - [SMALL_STATE(870)] = 60007, - [SMALL_STATE(871)] = 60093, - [SMALL_STATE(872)] = 60168, - [SMALL_STATE(873)] = 60243, - [SMALL_STATE(874)] = 60318, - [SMALL_STATE(875)] = 60393, - [SMALL_STATE(876)] = 60468, - [SMALL_STATE(877)] = 60543, - [SMALL_STATE(878)] = 60618, - [SMALL_STATE(879)] = 60693, - [SMALL_STATE(880)] = 60768, - [SMALL_STATE(881)] = 60843, - [SMALL_STATE(882)] = 60918, - [SMALL_STATE(883)] = 60993, - [SMALL_STATE(884)] = 61068, - [SMALL_STATE(885)] = 61143, - [SMALL_STATE(886)] = 61218, - [SMALL_STATE(887)] = 61293, - [SMALL_STATE(888)] = 61368, - [SMALL_STATE(889)] = 61443, - [SMALL_STATE(890)] = 61522, - [SMALL_STATE(891)] = 61601, - [SMALL_STATE(892)] = 61676, - [SMALL_STATE(893)] = 61751, - [SMALL_STATE(894)] = 61826, - [SMALL_STATE(895)] = 61901, - [SMALL_STATE(896)] = 61976, - [SMALL_STATE(897)] = 62055, - [SMALL_STATE(898)] = 62130, - [SMALL_STATE(899)] = 62205, - [SMALL_STATE(900)] = 62284, - [SMALL_STATE(901)] = 62359, - [SMALL_STATE(902)] = 62434, - [SMALL_STATE(903)] = 62509, - [SMALL_STATE(904)] = 62584, - [SMALL_STATE(905)] = 62659, - [SMALL_STATE(906)] = 62734, - [SMALL_STATE(907)] = 62809, - [SMALL_STATE(908)] = 62884, - [SMALL_STATE(909)] = 62959, - [SMALL_STATE(910)] = 63034, - [SMALL_STATE(911)] = 63113, - [SMALL_STATE(912)] = 63188, - [SMALL_STATE(913)] = 63267, - [SMALL_STATE(914)] = 63346, - [SMALL_STATE(915)] = 63425, - [SMALL_STATE(916)] = 63504, - [SMALL_STATE(917)] = 63579, - [SMALL_STATE(918)] = 63654, - [SMALL_STATE(919)] = 63729, - [SMALL_STATE(920)] = 63804, - [SMALL_STATE(921)] = 63879, - [SMALL_STATE(922)] = 63954, - [SMALL_STATE(923)] = 64029, - [SMALL_STATE(924)] = 64104, - [SMALL_STATE(925)] = 64179, - [SMALL_STATE(926)] = 64258, - [SMALL_STATE(927)] = 64337, - [SMALL_STATE(928)] = 64422, - [SMALL_STATE(929)] = 64507, - [SMALL_STATE(930)] = 64582, - [SMALL_STATE(931)] = 64661, - [SMALL_STATE(932)] = 64736, - [SMALL_STATE(933)] = 64811, - [SMALL_STATE(934)] = 64886, - [SMALL_STATE(935)] = 64961, - [SMALL_STATE(936)] = 65036, - [SMALL_STATE(937)] = 65111, - [SMALL_STATE(938)] = 65186, - [SMALL_STATE(939)] = 65265, - [SMALL_STATE(940)] = 65340, - [SMALL_STATE(941)] = 65415, - [SMALL_STATE(942)] = 65490, - [SMALL_STATE(943)] = 65565, - [SMALL_STATE(944)] = 65640, - [SMALL_STATE(945)] = 65715, - [SMALL_STATE(946)] = 65790, - [SMALL_STATE(947)] = 65865, - [SMALL_STATE(948)] = 65944, - [SMALL_STATE(949)] = 66019, - [SMALL_STATE(950)] = 66094, - [SMALL_STATE(951)] = 66173, - [SMALL_STATE(952)] = 66248, - [SMALL_STATE(953)] = 66327, - [SMALL_STATE(954)] = 66402, - [SMALL_STATE(955)] = 66477, - [SMALL_STATE(956)] = 66552, - [SMALL_STATE(957)] = 66627, - [SMALL_STATE(958)] = 66702, - [SMALL_STATE(959)] = 66781, - [SMALL_STATE(960)] = 66860, - [SMALL_STATE(961)] = 66939, - [SMALL_STATE(962)] = 67014, - [SMALL_STATE(963)] = 67093, - [SMALL_STATE(964)] = 67168, - [SMALL_STATE(965)] = 67253, - [SMALL_STATE(966)] = 67328, - [SMALL_STATE(967)] = 67380, - [SMALL_STATE(968)] = 67464, - [SMALL_STATE(969)] = 67546, - [SMALL_STATE(970)] = 67598, - [SMALL_STATE(971)] = 67650, - [SMALL_STATE(972)] = 67734, - [SMALL_STATE(973)] = 67818, - [SMALL_STATE(974)] = 67875, - [SMALL_STATE(975)] = 67940, - [SMALL_STATE(976)] = 67997, - [SMALL_STATE(977)] = 68054, - [SMALL_STATE(978)] = 68105, - [SMALL_STATE(979)] = 68156, - [SMALL_STATE(980)] = 68207, - [SMALL_STATE(981)] = 68258, - [SMALL_STATE(982)] = 68309, - [SMALL_STATE(983)] = 68360, - [SMALL_STATE(984)] = 68411, - [SMALL_STATE(985)] = 68462, - [SMALL_STATE(986)] = 68513, - [SMALL_STATE(987)] = 68570, - [SMALL_STATE(988)] = 68633, - [SMALL_STATE(989)] = 68704, - [SMALL_STATE(990)] = 68765, - [SMALL_STATE(991)] = 68834, - [SMALL_STATE(992)] = 68901, - [SMALL_STATE(993)] = 68982, - [SMALL_STATE(994)] = 69038, - [SMALL_STATE(995)] = 69088, - [SMALL_STATE(996)] = 69138, - [SMALL_STATE(997)] = 69190, - [SMALL_STATE(998)] = 69242, - [SMALL_STATE(999)] = 69298, - [SMALL_STATE(1000)] = 69354, - [SMALL_STATE(1001)] = 69402, - [SMALL_STATE(1002)] = 69448, - [SMALL_STATE(1003)] = 69504, - [SMALL_STATE(1004)] = 69566, - [SMALL_STATE(1005)] = 69636, - [SMALL_STATE(1006)] = 69692, - [SMALL_STATE(1007)] = 69752, - [SMALL_STATE(1008)] = 69820, - [SMALL_STATE(1009)] = 69886, - [SMALL_STATE(1010)] = 69950, - [SMALL_STATE(1011)] = 70006, - [SMALL_STATE(1012)] = 70062, - [SMALL_STATE(1013)] = 70110, - [SMALL_STATE(1014)] = 70166, - [SMALL_STATE(1015)] = 70222, - [SMALL_STATE(1016)] = 70268, - [SMALL_STATE(1017)] = 70314, - [SMALL_STATE(1018)] = 70378, - [SMALL_STATE(1019)] = 70440, - [SMALL_STATE(1020)] = 70510, - [SMALL_STATE(1021)] = 70560, - [SMALL_STATE(1022)] = 70620, - [SMALL_STATE(1023)] = 70688, - [SMALL_STATE(1024)] = 70754, - [SMALL_STATE(1025)] = 70818, - [SMALL_STATE(1026)] = 70868, - [SMALL_STATE(1027)] = 70916, - [SMALL_STATE(1028)] = 70962, - [SMALL_STATE(1029)] = 71008, - [SMALL_STATE(1030)] = 71054, - [SMALL_STATE(1031)] = 71100, - [SMALL_STATE(1032)] = 71146, - [SMALL_STATE(1033)] = 71192, - [SMALL_STATE(1034)] = 71272, - [SMALL_STATE(1035)] = 71322, - [SMALL_STATE(1036)] = 71372, - [SMALL_STATE(1037)] = 71422, - [SMALL_STATE(1038)] = 71502, - [SMALL_STATE(1039)] = 71558, - [SMALL_STATE(1040)] = 71620, - [SMALL_STATE(1041)] = 71690, - [SMALL_STATE(1042)] = 71746, - [SMALL_STATE(1043)] = 71806, - [SMALL_STATE(1044)] = 71874, - [SMALL_STATE(1045)] = 71924, - [SMALL_STATE(1046)] = 71990, - [SMALL_STATE(1047)] = 72040, - [SMALL_STATE(1048)] = 72120, - [SMALL_STATE(1049)] = 72176, - [SMALL_STATE(1050)] = 72221, - [SMALL_STATE(1051)] = 72266, - [SMALL_STATE(1052)] = 72313, - [SMALL_STATE(1053)] = 72368, - [SMALL_STATE(1054)] = 72423, - [SMALL_STATE(1055)] = 72468, - [SMALL_STATE(1056)] = 72527, - [SMALL_STATE(1057)] = 72578, - [SMALL_STATE(1058)] = 72629, - [SMALL_STATE(1059)] = 72680, - [SMALL_STATE(1060)] = 72725, - [SMALL_STATE(1061)] = 72780, - [SMALL_STATE(1062)] = 72841, - [SMALL_STATE(1063)] = 72910, - [SMALL_STATE(1064)] = 72965, - [SMALL_STATE(1065)] = 73024, - [SMALL_STATE(1066)] = 73069, - [SMALL_STATE(1067)] = 73116, - [SMALL_STATE(1068)] = 73163, - [SMALL_STATE(1069)] = 73210, - [SMALL_STATE(1070)] = 73277, - [SMALL_STATE(1071)] = 73342, - [SMALL_STATE(1072)] = 73411, - [SMALL_STATE(1073)] = 73474, - [SMALL_STATE(1074)] = 73519, - [SMALL_STATE(1075)] = 73564, - [SMALL_STATE(1076)] = 73609, - [SMALL_STATE(1077)] = 73654, - [SMALL_STATE(1078)] = 73699, - [SMALL_STATE(1079)] = 73744, - [SMALL_STATE(1080)] = 73789, - [SMALL_STATE(1081)] = 73834, - [SMALL_STATE(1082)] = 73879, - [SMALL_STATE(1083)] = 73928, - [SMALL_STATE(1084)] = 73973, - [SMALL_STATE(1085)] = 74018, - [SMALL_STATE(1086)] = 74067, - [SMALL_STATE(1087)] = 74118, - [SMALL_STATE(1088)] = 74169, - [SMALL_STATE(1089)] = 74236, - [SMALL_STATE(1090)] = 74281, - [SMALL_STATE(1091)] = 74346, - [SMALL_STATE(1092)] = 74391, - [SMALL_STATE(1093)] = 74436, - [SMALL_STATE(1094)] = 74481, - [SMALL_STATE(1095)] = 74526, - [SMALL_STATE(1096)] = 74571, - [SMALL_STATE(1097)] = 74626, - [SMALL_STATE(1098)] = 74681, - [SMALL_STATE(1099)] = 74726, - [SMALL_STATE(1100)] = 74771, - [SMALL_STATE(1101)] = 74826, - [SMALL_STATE(1102)] = 74881, - [SMALL_STATE(1103)] = 74950, - [SMALL_STATE(1104)] = 75005, - [SMALL_STATE(1105)] = 75064, - [SMALL_STATE(1106)] = 75131, - [SMALL_STATE(1107)] = 75196, - [SMALL_STATE(1108)] = 75259, - [SMALL_STATE(1109)] = 75304, - [SMALL_STATE(1110)] = 75349, - [SMALL_STATE(1111)] = 75398, - [SMALL_STATE(1112)] = 75445, - [SMALL_STATE(1113)] = 75492, - [SMALL_STATE(1114)] = 75539, - [SMALL_STATE(1115)] = 75584, - [SMALL_STATE(1116)] = 75629, - [SMALL_STATE(1117)] = 75678, - [SMALL_STATE(1118)] = 75727, - [SMALL_STATE(1119)] = 75772, - [SMALL_STATE(1120)] = 75817, - [SMALL_STATE(1121)] = 75862, - [SMALL_STATE(1122)] = 75907, - [SMALL_STATE(1123)] = 75956, - [SMALL_STATE(1124)] = 76005, - [SMALL_STATE(1125)] = 76054, - [SMALL_STATE(1126)] = 76117, - [SMALL_STATE(1127)] = 76162, - [SMALL_STATE(1128)] = 76217, - [SMALL_STATE(1129)] = 76270, - [SMALL_STATE(1130)] = 76319, - [SMALL_STATE(1131)] = 76368, - [SMALL_STATE(1132)] = 76417, - [SMALL_STATE(1133)] = 76462, - [SMALL_STATE(1134)] = 76523, - [SMALL_STATE(1135)] = 76568, - [SMALL_STATE(1136)] = 76613, - [SMALL_STATE(1137)] = 76664, - [SMALL_STATE(1138)] = 76715, - [SMALL_STATE(1139)] = 76770, - [SMALL_STATE(1140)] = 76825, - [SMALL_STATE(1141)] = 76874, - [SMALL_STATE(1142)] = 76925, - [SMALL_STATE(1143)] = 76976, - [SMALL_STATE(1144)] = 77021, - [SMALL_STATE(1145)] = 77068, - [SMALL_STATE(1146)] = 77113, - [SMALL_STATE(1147)] = 77160, - [SMALL_STATE(1148)] = 77205, - [SMALL_STATE(1149)] = 77266, - [SMALL_STATE(1150)] = 77314, - [SMALL_STATE(1151)] = 77358, - [SMALL_STATE(1152)] = 77402, - [SMALL_STATE(1153)] = 77446, - [SMALL_STATE(1154)] = 77492, - [SMALL_STATE(1155)] = 77538, - [SMALL_STATE(1156)] = 77584, - [SMALL_STATE(1157)] = 77632, - [SMALL_STATE(1158)] = 77680, - [SMALL_STATE(1159)] = 77726, - [SMALL_STATE(1160)] = 77772, - [SMALL_STATE(1161)] = 77818, - [SMALL_STATE(1162)] = 77864, - [SMALL_STATE(1163)] = 77910, - [SMALL_STATE(1164)] = 77954, - [SMALL_STATE(1165)] = 77998, - [SMALL_STATE(1166)] = 78042, - [SMALL_STATE(1167)] = 78086, - [SMALL_STATE(1168)] = 78130, - [SMALL_STATE(1169)] = 78178, - [SMALL_STATE(1170)] = 78226, - [SMALL_STATE(1171)] = 78274, - [SMALL_STATE(1172)] = 78318, - [SMALL_STATE(1173)] = 78362, - [SMALL_STATE(1174)] = 78406, - [SMALL_STATE(1175)] = 78450, - [SMALL_STATE(1176)] = 78494, - [SMALL_STATE(1177)] = 78538, - [SMALL_STATE(1178)] = 78582, - [SMALL_STATE(1179)] = 78626, - [SMALL_STATE(1180)] = 78670, - [SMALL_STATE(1181)] = 78714, - [SMALL_STATE(1182)] = 78758, - [SMALL_STATE(1183)] = 78802, - [SMALL_STATE(1184)] = 78846, - [SMALL_STATE(1185)] = 78890, - [SMALL_STATE(1186)] = 78934, - [SMALL_STATE(1187)] = 78978, - [SMALL_STATE(1188)] = 79022, - [SMALL_STATE(1189)] = 79066, - [SMALL_STATE(1190)] = 79110, - [SMALL_STATE(1191)] = 79154, - [SMALL_STATE(1192)] = 79198, - [SMALL_STATE(1193)] = 79242, - [SMALL_STATE(1194)] = 79286, - [SMALL_STATE(1195)] = 79330, - [SMALL_STATE(1196)] = 79374, - [SMALL_STATE(1197)] = 79418, - [SMALL_STATE(1198)] = 79462, - [SMALL_STATE(1199)] = 79506, - [SMALL_STATE(1200)] = 79552, - [SMALL_STATE(1201)] = 79596, - [SMALL_STATE(1202)] = 79644, - [SMALL_STATE(1203)] = 79688, - [SMALL_STATE(1204)] = 79732, - [SMALL_STATE(1205)] = 79776, - [SMALL_STATE(1206)] = 79820, - [SMALL_STATE(1207)] = 79864, - [SMALL_STATE(1208)] = 79908, - [SMALL_STATE(1209)] = 79952, - [SMALL_STATE(1210)] = 79996, - [SMALL_STATE(1211)] = 80040, - [SMALL_STATE(1212)] = 80084, - [SMALL_STATE(1213)] = 80128, - [SMALL_STATE(1214)] = 80172, - [SMALL_STATE(1215)] = 80216, - [SMALL_STATE(1216)] = 80260, - [SMALL_STATE(1217)] = 80304, - [SMALL_STATE(1218)] = 80348, - [SMALL_STATE(1219)] = 80392, - [SMALL_STATE(1220)] = 80436, - [SMALL_STATE(1221)] = 80480, - [SMALL_STATE(1222)] = 80524, - [SMALL_STATE(1223)] = 80568, - [SMALL_STATE(1224)] = 80612, - [SMALL_STATE(1225)] = 80656, - [SMALL_STATE(1226)] = 80700, - [SMALL_STATE(1227)] = 80744, - [SMALL_STATE(1228)] = 80788, - [SMALL_STATE(1229)] = 80832, - [SMALL_STATE(1230)] = 80876, - [SMALL_STATE(1231)] = 80920, - [SMALL_STATE(1232)] = 80964, - [SMALL_STATE(1233)] = 81010, - [SMALL_STATE(1234)] = 81054, - [SMALL_STATE(1235)] = 81100, - [SMALL_STATE(1236)] = 81146, - [SMALL_STATE(1237)] = 81190, - [SMALL_STATE(1238)] = 81234, - [SMALL_STATE(1239)] = 81284, - [SMALL_STATE(1240)] = 81328, - [SMALL_STATE(1241)] = 81372, - [SMALL_STATE(1242)] = 81416, - [SMALL_STATE(1243)] = 81460, - [SMALL_STATE(1244)] = 81504, - [SMALL_STATE(1245)] = 81548, - [SMALL_STATE(1246)] = 81592, - [SMALL_STATE(1247)] = 81642, - [SMALL_STATE(1248)] = 81686, - [SMALL_STATE(1249)] = 81734, - [SMALL_STATE(1250)] = 81778, - [SMALL_STATE(1251)] = 81822, - [SMALL_STATE(1252)] = 81876, - [SMALL_STATE(1253)] = 81930, - [SMALL_STATE(1254)] = 81974, - [SMALL_STATE(1255)] = 82018, - [SMALL_STATE(1256)] = 82062, - [SMALL_STATE(1257)] = 82116, - [SMALL_STATE(1258)] = 82176, - [SMALL_STATE(1259)] = 82244, - [SMALL_STATE(1260)] = 82298, - [SMALL_STATE(1261)] = 82356, - [SMALL_STATE(1262)] = 82422, - [SMALL_STATE(1263)] = 82486, - [SMALL_STATE(1264)] = 82548, - [SMALL_STATE(1265)] = 82596, - [SMALL_STATE(1266)] = 82644, - [SMALL_STATE(1267)] = 82692, - [SMALL_STATE(1268)] = 82740, - [SMALL_STATE(1269)] = 82788, - [SMALL_STATE(1270)] = 82836, - [SMALL_STATE(1271)] = 82880, - [SMALL_STATE(1272)] = 82924, - [SMALL_STATE(1273)] = 82968, - [SMALL_STATE(1274)] = 83012, - [SMALL_STATE(1275)] = 83056, - [SMALL_STATE(1276)] = 83100, - [SMALL_STATE(1277)] = 83144, - [SMALL_STATE(1278)] = 83192, - [SMALL_STATE(1279)] = 83240, - [SMALL_STATE(1280)] = 83288, - [SMALL_STATE(1281)] = 83332, - [SMALL_STATE(1282)] = 83380, - [SMALL_STATE(1283)] = 83424, - [SMALL_STATE(1284)] = 83470, - [SMALL_STATE(1285)] = 83516, - [SMALL_STATE(1286)] = 83562, - [SMALL_STATE(1287)] = 83606, - [SMALL_STATE(1288)] = 83650, - [SMALL_STATE(1289)] = 83694, - [SMALL_STATE(1290)] = 83738, - [SMALL_STATE(1291)] = 83782, - [SMALL_STATE(1292)] = 83826, - [SMALL_STATE(1293)] = 83874, - [SMALL_STATE(1294)] = 83918, - [SMALL_STATE(1295)] = 83962, - [SMALL_STATE(1296)] = 84006, - [SMALL_STATE(1297)] = 84050, - [SMALL_STATE(1298)] = 84100, - [SMALL_STATE(1299)] = 84150, - [SMALL_STATE(1300)] = 84194, - [SMALL_STATE(1301)] = 84238, - [SMALL_STATE(1302)] = 84282, - [SMALL_STATE(1303)] = 84325, - [SMALL_STATE(1304)] = 84370, - [SMALL_STATE(1305)] = 84417, - [SMALL_STATE(1306)] = 84464, - [SMALL_STATE(1307)] = 84509, - [SMALL_STATE(1308)] = 84554, - [SMALL_STATE(1309)] = 84599, - [SMALL_STATE(1310)] = 84642, - [SMALL_STATE(1311)] = 84685, - [SMALL_STATE(1312)] = 84728, - [SMALL_STATE(1313)] = 84771, - [SMALL_STATE(1314)] = 84814, - [SMALL_STATE(1315)] = 84857, - [SMALL_STATE(1316)] = 84900, - [SMALL_STATE(1317)] = 84943, - [SMALL_STATE(1318)] = 84986, - [SMALL_STATE(1319)] = 85029, - [SMALL_STATE(1320)] = 85072, - [SMALL_STATE(1321)] = 85115, - [SMALL_STATE(1322)] = 85158, - [SMALL_STATE(1323)] = 85205, - [SMALL_STATE(1324)] = 85248, - [SMALL_STATE(1325)] = 85295, - [SMALL_STATE(1326)] = 85338, - [SMALL_STATE(1327)] = 85383, - [SMALL_STATE(1328)] = 85426, - [SMALL_STATE(1329)] = 85469, - [SMALL_STATE(1330)] = 85512, - [SMALL_STATE(1331)] = 85555, - [SMALL_STATE(1332)] = 85598, - [SMALL_STATE(1333)] = 85641, - [SMALL_STATE(1334)] = 85684, - [SMALL_STATE(1335)] = 85727, - [SMALL_STATE(1336)] = 85770, - [SMALL_STATE(1337)] = 85813, - [SMALL_STATE(1338)] = 85856, - [SMALL_STATE(1339)] = 85899, - [SMALL_STATE(1340)] = 85942, - [SMALL_STATE(1341)] = 85987, - [SMALL_STATE(1342)] = 86032, - [SMALL_STATE(1343)] = 86075, - [SMALL_STATE(1344)] = 86118, - [SMALL_STATE(1345)] = 86161, - [SMALL_STATE(1346)] = 86204, - [SMALL_STATE(1347)] = 86247, - [SMALL_STATE(1348)] = 86290, - [SMALL_STATE(1349)] = 86333, - [SMALL_STATE(1350)] = 86376, - [SMALL_STATE(1351)] = 86419, - [SMALL_STATE(1352)] = 86462, - [SMALL_STATE(1353)] = 86505, - [SMALL_STATE(1354)] = 86548, - [SMALL_STATE(1355)] = 86591, - [SMALL_STATE(1356)] = 86634, - [SMALL_STATE(1357)] = 86677, - [SMALL_STATE(1358)] = 86720, - [SMALL_STATE(1359)] = 86763, - [SMALL_STATE(1360)] = 86806, - [SMALL_STATE(1361)] = 86853, - [SMALL_STATE(1362)] = 86896, - [SMALL_STATE(1363)] = 86939, - [SMALL_STATE(1364)] = 86982, - [SMALL_STATE(1365)] = 87025, - [SMALL_STATE(1366)] = 87068, - [SMALL_STATE(1367)] = 87111, - [SMALL_STATE(1368)] = 87154, - [SMALL_STATE(1369)] = 87201, - [SMALL_STATE(1370)] = 87244, - [SMALL_STATE(1371)] = 87289, - [SMALL_STATE(1372)] = 87334, - [SMALL_STATE(1373)] = 87379, - [SMALL_STATE(1374)] = 87422, - [SMALL_STATE(1375)] = 87469, - [SMALL_STATE(1376)] = 87514, - [SMALL_STATE(1377)] = 87557, - [SMALL_STATE(1378)] = 87600, - [SMALL_STATE(1379)] = 87643, - [SMALL_STATE(1380)] = 87686, - [SMALL_STATE(1381)] = 87729, - [SMALL_STATE(1382)] = 87780, - [SMALL_STATE(1383)] = 87823, - [SMALL_STATE(1384)] = 87866, - [SMALL_STATE(1385)] = 87909, - [SMALL_STATE(1386)] = 87952, - [SMALL_STATE(1387)] = 87995, - [SMALL_STATE(1388)] = 88038, - [SMALL_STATE(1389)] = 88081, - [SMALL_STATE(1390)] = 88124, - [SMALL_STATE(1391)] = 88167, - [SMALL_STATE(1392)] = 88212, - [SMALL_STATE(1393)] = 88255, - [SMALL_STATE(1394)] = 88300, - [SMALL_STATE(1395)] = 88343, - [SMALL_STATE(1396)] = 88386, - [SMALL_STATE(1397)] = 88431, - [SMALL_STATE(1398)] = 88474, - [SMALL_STATE(1399)] = 88521, - [SMALL_STATE(1400)] = 88568, - [SMALL_STATE(1401)] = 88613, - [SMALL_STATE(1402)] = 88656, - [SMALL_STATE(1403)] = 88703, - [SMALL_STATE(1404)] = 88746, - [SMALL_STATE(1405)] = 88791, - [SMALL_STATE(1406)] = 88834, - [SMALL_STATE(1407)] = 88877, - [SMALL_STATE(1408)] = 88920, - [SMALL_STATE(1409)] = 88963, - [SMALL_STATE(1410)] = 89006, - [SMALL_STATE(1411)] = 89049, - [SMALL_STATE(1412)] = 89092, - [SMALL_STATE(1413)] = 89135, - [SMALL_STATE(1414)] = 89178, - [SMALL_STATE(1415)] = 89221, - [SMALL_STATE(1416)] = 89264, - [SMALL_STATE(1417)] = 89309, - [SMALL_STATE(1418)] = 89352, - [SMALL_STATE(1419)] = 89395, - [SMALL_STATE(1420)] = 89446, - [SMALL_STATE(1421)] = 89489, - [SMALL_STATE(1422)] = 89532, - [SMALL_STATE(1423)] = 89575, - [SMALL_STATE(1424)] = 89620, - [SMALL_STATE(1425)] = 89663, - [SMALL_STATE(1426)] = 89710, - [SMALL_STATE(1427)] = 89757, - [SMALL_STATE(1428)] = 89800, - [SMALL_STATE(1429)] = 89842, - [SMALL_STATE(1430)] = 89884, - [SMALL_STATE(1431)] = 89926, - [SMALL_STATE(1432)] = 89968, - [SMALL_STATE(1433)] = 90010, - [SMALL_STATE(1434)] = 90058, - [SMALL_STATE(1435)] = 90100, - [SMALL_STATE(1436)] = 90146, - [SMALL_STATE(1437)] = 90188, - [SMALL_STATE(1438)] = 90230, - [SMALL_STATE(1439)] = 90280, - [SMALL_STATE(1440)] = 90324, - [SMALL_STATE(1441)] = 90366, - [SMALL_STATE(1442)] = 90410, - [SMALL_STATE(1443)] = 90452, - [SMALL_STATE(1444)] = 90494, - [SMALL_STATE(1445)] = 90536, - [SMALL_STATE(1446)] = 90578, - [SMALL_STATE(1447)] = 90620, - [SMALL_STATE(1448)] = 90662, - [SMALL_STATE(1449)] = 90706, - [SMALL_STATE(1450)] = 90750, - [SMALL_STATE(1451)] = 90794, - [SMALL_STATE(1452)] = 90836, - [SMALL_STATE(1453)] = 90880, - [SMALL_STATE(1454)] = 90922, - [SMALL_STATE(1455)] = 90964, - [SMALL_STATE(1456)] = 91008, - [SMALL_STATE(1457)] = 91050, - [SMALL_STATE(1458)] = 91092, - [SMALL_STATE(1459)] = 91134, - [SMALL_STATE(1460)] = 91176, - [SMALL_STATE(1461)] = 91218, - [SMALL_STATE(1462)] = 91262, - [SMALL_STATE(1463)] = 91304, - [SMALL_STATE(1464)] = 91348, - [SMALL_STATE(1465)] = 91390, - [SMALL_STATE(1466)] = 91432, - [SMALL_STATE(1467)] = 91474, - [SMALL_STATE(1468)] = 91516, - [SMALL_STATE(1469)] = 91558, - [SMALL_STATE(1470)] = 91604, - [SMALL_STATE(1471)] = 91650, - [SMALL_STATE(1472)] = 91692, - [SMALL_STATE(1473)] = 91734, - [SMALL_STATE(1474)] = 91776, - [SMALL_STATE(1475)] = 91818, - [SMALL_STATE(1476)] = 91861, - [SMALL_STATE(1477)] = 91902, - [SMALL_STATE(1478)] = 91943, - [SMALL_STATE(1479)] = 91984, - [SMALL_STATE(1480)] = 92027, - [SMALL_STATE(1481)] = 92070, - [SMALL_STATE(1482)] = 92111, - [SMALL_STATE(1483)] = 92152, - [SMALL_STATE(1484)] = 92193, - [SMALL_STATE(1485)] = 92236, - [SMALL_STATE(1486)] = 92277, - [SMALL_STATE(1487)] = 92318, - [SMALL_STATE(1488)] = 92359, - [SMALL_STATE(1489)] = 92402, - [SMALL_STATE(1490)] = 92445, - [SMALL_STATE(1491)] = 92488, - [SMALL_STATE(1492)] = 92531, - [SMALL_STATE(1493)] = 92572, - [SMALL_STATE(1494)] = 92615, - [SMALL_STATE(1495)] = 92689, - [SMALL_STATE(1496)] = 92763, - [SMALL_STATE(1497)] = 92831, - [SMALL_STATE(1498)] = 92899, - [SMALL_STATE(1499)] = 92967, - [SMALL_STATE(1500)] = 93035, - [SMALL_STATE(1501)] = 93103, - [SMALL_STATE(1502)] = 93171, - [SMALL_STATE(1503)] = 93239, - [SMALL_STATE(1504)] = 93307, - [SMALL_STATE(1505)] = 93375, - [SMALL_STATE(1506)] = 93443, - [SMALL_STATE(1507)] = 93511, - [SMALL_STATE(1508)] = 93579, - [SMALL_STATE(1509)] = 93647, - [SMALL_STATE(1510)] = 93715, - [SMALL_STATE(1511)] = 93783, - [SMALL_STATE(1512)] = 93851, - [SMALL_STATE(1513)] = 93919, - [SMALL_STATE(1514)] = 93987, - [SMALL_STATE(1515)] = 94055, - [SMALL_STATE(1516)] = 94123, - [SMALL_STATE(1517)] = 94191, - [SMALL_STATE(1518)] = 94259, - [SMALL_STATE(1519)] = 94327, - [SMALL_STATE(1520)] = 94395, - [SMALL_STATE(1521)] = 94463, - [SMALL_STATE(1522)] = 94531, - [SMALL_STATE(1523)] = 94599, - [SMALL_STATE(1524)] = 94667, - [SMALL_STATE(1525)] = 94735, - [SMALL_STATE(1526)] = 94803, - [SMALL_STATE(1527)] = 94871, - [SMALL_STATE(1528)] = 94939, - [SMALL_STATE(1529)] = 95007, - [SMALL_STATE(1530)] = 95075, - [SMALL_STATE(1531)] = 95143, - [SMALL_STATE(1532)] = 95211, - [SMALL_STATE(1533)] = 95276, - [SMALL_STATE(1534)] = 95341, - [SMALL_STATE(1535)] = 95406, - [SMALL_STATE(1536)] = 95471, - [SMALL_STATE(1537)] = 95536, - [SMALL_STATE(1538)] = 95602, - [SMALL_STATE(1539)] = 95668, - [SMALL_STATE(1540)] = 95734, - [SMALL_STATE(1541)] = 95800, - [SMALL_STATE(1542)] = 95866, - [SMALL_STATE(1543)] = 95932, - [SMALL_STATE(1544)] = 95998, - [SMALL_STATE(1545)] = 96064, - [SMALL_STATE(1546)] = 96130, - [SMALL_STATE(1547)] = 96196, - [SMALL_STATE(1548)] = 96262, - [SMALL_STATE(1549)] = 96328, - [SMALL_STATE(1550)] = 96394, - [SMALL_STATE(1551)] = 96460, - [SMALL_STATE(1552)] = 96526, - [SMALL_STATE(1553)] = 96592, - [SMALL_STATE(1554)] = 96658, - [SMALL_STATE(1555)] = 96724, - [SMALL_STATE(1556)] = 96790, - [SMALL_STATE(1557)] = 96856, - [SMALL_STATE(1558)] = 96919, - [SMALL_STATE(1559)] = 96977, - [SMALL_STATE(1560)] = 97035, - [SMALL_STATE(1561)] = 97093, - [SMALL_STATE(1562)] = 97151, - [SMALL_STATE(1563)] = 97209, - [SMALL_STATE(1564)] = 97267, - [SMALL_STATE(1565)] = 97313, - [SMALL_STATE(1566)] = 97371, - [SMALL_STATE(1567)] = 97429, - [SMALL_STATE(1568)] = 97475, - [SMALL_STATE(1569)] = 97520, - [SMALL_STATE(1570)] = 97565, - [SMALL_STATE(1571)] = 97609, - [SMALL_STATE(1572)] = 97653, - [SMALL_STATE(1573)] = 97697, - [SMALL_STATE(1574)] = 97741, - [SMALL_STATE(1575)] = 97784, - [SMALL_STATE(1576)] = 97827, - [SMALL_STATE(1577)] = 97870, - [SMALL_STATE(1578)] = 97913, - [SMALL_STATE(1579)] = 97954, - [SMALL_STATE(1580)] = 97995, - [SMALL_STATE(1581)] = 98037, - [SMALL_STATE(1582)] = 98067, - [SMALL_STATE(1583)] = 98099, - [SMALL_STATE(1584)] = 98131, - [SMALL_STATE(1585)] = 98163, - [SMALL_STATE(1586)] = 98195, - [SMALL_STATE(1587)] = 98227, - [SMALL_STATE(1588)] = 98259, - [SMALL_STATE(1589)] = 98289, - [SMALL_STATE(1590)] = 98331, - [SMALL_STATE(1591)] = 98361, - [SMALL_STATE(1592)] = 98391, - [SMALL_STATE(1593)] = 98421, - [SMALL_STATE(1594)] = 98451, - [SMALL_STATE(1595)] = 98481, - [SMALL_STATE(1596)] = 98511, - [SMALL_STATE(1597)] = 98541, - [SMALL_STATE(1598)] = 98571, - [SMALL_STATE(1599)] = 98600, - [SMALL_STATE(1600)] = 98629, - [SMALL_STATE(1601)] = 98658, - [SMALL_STATE(1602)] = 98687, - [SMALL_STATE(1603)] = 98716, - [SMALL_STATE(1604)] = 98745, - [SMALL_STATE(1605)] = 98774, - [SMALL_STATE(1606)] = 98803, - [SMALL_STATE(1607)] = 98832, - [SMALL_STATE(1608)] = 98861, - [SMALL_STATE(1609)] = 98890, - [SMALL_STATE(1610)] = 98919, - [SMALL_STATE(1611)] = 98948, - [SMALL_STATE(1612)] = 98977, - [SMALL_STATE(1613)] = 99006, - [SMALL_STATE(1614)] = 99035, - [SMALL_STATE(1615)] = 99060, - [SMALL_STATE(1616)] = 99089, - [SMALL_STATE(1617)] = 99136, - [SMALL_STATE(1618)] = 99161, - [SMALL_STATE(1619)] = 99190, - [SMALL_STATE(1620)] = 99219, - [SMALL_STATE(1621)] = 99248, - [SMALL_STATE(1622)] = 99277, - [SMALL_STATE(1623)] = 99324, - [SMALL_STATE(1624)] = 99371, - [SMALL_STATE(1625)] = 99418, - [SMALL_STATE(1626)] = 99465, - [SMALL_STATE(1627)] = 99512, - [SMALL_STATE(1628)] = 99559, - [SMALL_STATE(1629)] = 99584, - [SMALL_STATE(1630)] = 99631, - [SMALL_STATE(1631)] = 99660, - [SMALL_STATE(1632)] = 99707, - [SMALL_STATE(1633)] = 99754, - [SMALL_STATE(1634)] = 99783, - [SMALL_STATE(1635)] = 99808, - [SMALL_STATE(1636)] = 99837, - [SMALL_STATE(1637)] = 99883, - [SMALL_STATE(1638)] = 99929, - [SMALL_STATE(1639)] = 99953, - [SMALL_STATE(1640)] = 99999, - [SMALL_STATE(1641)] = 100023, - [SMALL_STATE(1642)] = 100053, - [SMALL_STATE(1643)] = 100099, - [SMALL_STATE(1644)] = 100127, - [SMALL_STATE(1645)] = 100173, - [SMALL_STATE(1646)] = 100219, - [SMALL_STATE(1647)] = 100243, - [SMALL_STATE(1648)] = 100289, - [SMALL_STATE(1649)] = 100335, - [SMALL_STATE(1650)] = 100381, - [SMALL_STATE(1651)] = 100405, - [SMALL_STATE(1652)] = 100437, - [SMALL_STATE(1653)] = 100469, - [SMALL_STATE(1654)] = 100497, - [SMALL_STATE(1655)] = 100543, - [SMALL_STATE(1656)] = 100589, - [SMALL_STATE(1657)] = 100632, - [SMALL_STATE(1658)] = 100672, - [SMALL_STATE(1659)] = 100712, - [SMALL_STATE(1660)] = 100752, - [SMALL_STATE(1661)] = 100778, - [SMALL_STATE(1662)] = 100818, - [SMALL_STATE(1663)] = 100855, - [SMALL_STATE(1664)] = 100894, - [SMALL_STATE(1665)] = 100931, - [SMALL_STATE(1666)] = 100972, - [SMALL_STATE(1667)] = 100999, - [SMALL_STATE(1668)] = 101040, - [SMALL_STATE(1669)] = 101059, - [SMALL_STATE(1670)] = 101082, - [SMALL_STATE(1671)] = 101101, - [SMALL_STATE(1672)] = 101142, - [SMALL_STATE(1673)] = 101163, - [SMALL_STATE(1674)] = 101204, - [SMALL_STATE(1675)] = 101245, - [SMALL_STATE(1676)] = 101286, - [SMALL_STATE(1677)] = 101311, - [SMALL_STATE(1678)] = 101338, - [SMALL_STATE(1679)] = 101379, - [SMALL_STATE(1680)] = 101398, - [SMALL_STATE(1681)] = 101425, - [SMALL_STATE(1682)] = 101466, - [SMALL_STATE(1683)] = 101504, - [SMALL_STATE(1684)] = 101534, - [SMALL_STATE(1685)] = 101564, - [SMALL_STATE(1686)] = 101602, - [SMALL_STATE(1687)] = 101640, - [SMALL_STATE(1688)] = 101670, - [SMALL_STATE(1689)] = 101700, - [SMALL_STATE(1690)] = 101732, - [SMALL_STATE(1691)] = 101762, - [SMALL_STATE(1692)] = 101792, - [SMALL_STATE(1693)] = 101830, - [SMALL_STATE(1694)] = 101868, - [SMALL_STATE(1695)] = 101906, - [SMALL_STATE(1696)] = 101926, - [SMALL_STATE(1697)] = 101956, - [SMALL_STATE(1698)] = 101986, - [SMALL_STATE(1699)] = 102024, - [SMALL_STATE(1700)] = 102062, - [SMALL_STATE(1701)] = 102100, - [SMALL_STATE(1702)] = 102130, - [SMALL_STATE(1703)] = 102160, - [SMALL_STATE(1704)] = 102198, - [SMALL_STATE(1705)] = 102236, - [SMALL_STATE(1706)] = 102256, - [SMALL_STATE(1707)] = 102276, - [SMALL_STATE(1708)] = 102306, - [SMALL_STATE(1709)] = 102344, - [SMALL_STATE(1710)] = 102374, - [SMALL_STATE(1711)] = 102412, - [SMALL_STATE(1712)] = 102442, - [SMALL_STATE(1713)] = 102472, - [SMALL_STATE(1714)] = 102510, - [SMALL_STATE(1715)] = 102548, - [SMALL_STATE(1716)] = 102578, - [SMALL_STATE(1717)] = 102608, - [SMALL_STATE(1718)] = 102646, - [SMALL_STATE(1719)] = 102684, - [SMALL_STATE(1720)] = 102714, - [SMALL_STATE(1721)] = 102744, - [SMALL_STATE(1722)] = 102782, - [SMALL_STATE(1723)] = 102808, - [SMALL_STATE(1724)] = 102846, - [SMALL_STATE(1725)] = 102872, - [SMALL_STATE(1726)] = 102910, - [SMALL_STATE(1727)] = 102934, - [SMALL_STATE(1728)] = 102972, - [SMALL_STATE(1729)] = 103010, - [SMALL_STATE(1730)] = 103032, - [SMALL_STATE(1731)] = 103070, - [SMALL_STATE(1732)] = 103108, - [SMALL_STATE(1733)] = 103146, - [SMALL_STATE(1734)] = 103172, - [SMALL_STATE(1735)] = 103196, - [SMALL_STATE(1736)] = 103226, - [SMALL_STATE(1737)] = 103243, - [SMALL_STATE(1738)] = 103272, - [SMALL_STATE(1739)] = 103289, - [SMALL_STATE(1740)] = 103312, - [SMALL_STATE(1741)] = 103337, - [SMALL_STATE(1742)] = 103362, - [SMALL_STATE(1743)] = 103383, - [SMALL_STATE(1744)] = 103400, - [SMALL_STATE(1745)] = 103419, - [SMALL_STATE(1746)] = 103440, - [SMALL_STATE(1747)] = 103465, - [SMALL_STATE(1748)] = 103482, - [SMALL_STATE(1749)] = 103499, - [SMALL_STATE(1750)] = 103516, - [SMALL_STATE(1751)] = 103535, - [SMALL_STATE(1752)] = 103560, - [SMALL_STATE(1753)] = 103583, - [SMALL_STATE(1754)] = 103608, - [SMALL_STATE(1755)] = 103633, - [SMALL_STATE(1756)] = 103658, - [SMALL_STATE(1757)] = 103687, - [SMALL_STATE(1758)] = 103712, - [SMALL_STATE(1759)] = 103732, - [SMALL_STATE(1760)] = 103750, - [SMALL_STATE(1761)] = 103766, - [SMALL_STATE(1762)] = 103784, - [SMALL_STATE(1763)] = 103804, - [SMALL_STATE(1764)] = 103828, - [SMALL_STATE(1765)] = 103852, - [SMALL_STATE(1766)] = 103876, - [SMALL_STATE(1767)] = 103900, - [SMALL_STATE(1768)] = 103924, - [SMALL_STATE(1769)] = 103940, - [SMALL_STATE(1770)] = 103964, - [SMALL_STATE(1771)] = 103994, - [SMALL_STATE(1772)] = 104010, - [SMALL_STATE(1773)] = 104034, - [SMALL_STATE(1774)] = 104050, - [SMALL_STATE(1775)] = 104072, - [SMALL_STATE(1776)] = 104096, - [SMALL_STATE(1777)] = 104120, - [SMALL_STATE(1778)] = 104142, - [SMALL_STATE(1779)] = 104164, - [SMALL_STATE(1780)] = 104184, - [SMALL_STATE(1781)] = 104204, - [SMALL_STATE(1782)] = 104228, - [SMALL_STATE(1783)] = 104250, - [SMALL_STATE(1784)] = 104266, - [SMALL_STATE(1785)] = 104284, - [SMALL_STATE(1786)] = 104304, - [SMALL_STATE(1787)] = 104322, - [SMALL_STATE(1788)] = 104340, - [SMALL_STATE(1789)] = 104364, - [SMALL_STATE(1790)] = 104384, - [SMALL_STATE(1791)] = 104408, - [SMALL_STATE(1792)] = 104424, - [SMALL_STATE(1793)] = 104448, - [SMALL_STATE(1794)] = 104470, - [SMALL_STATE(1795)] = 104491, - [SMALL_STATE(1796)] = 104520, - [SMALL_STATE(1797)] = 104541, - [SMALL_STATE(1798)] = 104564, - [SMALL_STATE(1799)] = 104589, - [SMALL_STATE(1800)] = 104616, - [SMALL_STATE(1801)] = 104639, - [SMALL_STATE(1802)] = 104668, - [SMALL_STATE(1803)] = 104683, - [SMALL_STATE(1804)] = 104706, - [SMALL_STATE(1805)] = 104729, - [SMALL_STATE(1806)] = 104756, - [SMALL_STATE(1807)] = 104777, - [SMALL_STATE(1808)] = 104802, - [SMALL_STATE(1809)] = 104823, - [SMALL_STATE(1810)] = 104844, - [SMALL_STATE(1811)] = 104861, - [SMALL_STATE(1812)] = 104890, - [SMALL_STATE(1813)] = 104917, - [SMALL_STATE(1814)] = 104938, - [SMALL_STATE(1815)] = 104967, - [SMALL_STATE(1816)] = 104988, - [SMALL_STATE(1817)] = 105017, - [SMALL_STATE(1818)] = 105046, - [SMALL_STATE(1819)] = 105063, - [SMALL_STATE(1820)] = 105092, - [SMALL_STATE(1821)] = 105111, - [SMALL_STATE(1822)] = 105136, - [SMALL_STATE(1823)] = 105157, - [SMALL_STATE(1824)] = 105182, - [SMALL_STATE(1825)] = 105209, - [SMALL_STATE(1826)] = 105232, - [SMALL_STATE(1827)] = 105259, - [SMALL_STATE(1828)] = 105286, - [SMALL_STATE(1829)] = 105313, - [SMALL_STATE(1830)] = 105338, - [SMALL_STATE(1831)] = 105367, - [SMALL_STATE(1832)] = 105388, - [SMALL_STATE(1833)] = 105409, - [SMALL_STATE(1834)] = 105438, - [SMALL_STATE(1835)] = 105465, - [SMALL_STATE(1836)] = 105488, - [SMALL_STATE(1837)] = 105513, - [SMALL_STATE(1838)] = 105534, - [SMALL_STATE(1839)] = 105555, - [SMALL_STATE(1840)] = 105576, - [SMALL_STATE(1841)] = 105597, - [SMALL_STATE(1842)] = 105614, - [SMALL_STATE(1843)] = 105633, - [SMALL_STATE(1844)] = 105656, - [SMALL_STATE(1845)] = 105685, - [SMALL_STATE(1846)] = 105707, - [SMALL_STATE(1847)] = 105729, - [SMALL_STATE(1848)] = 105755, - [SMALL_STATE(1849)] = 105781, - [SMALL_STATE(1850)] = 105807, - [SMALL_STATE(1851)] = 105833, - [SMALL_STATE(1852)] = 105859, - [SMALL_STATE(1853)] = 105885, - [SMALL_STATE(1854)] = 105903, - [SMALL_STATE(1855)] = 105925, - [SMALL_STATE(1856)] = 105947, - [SMALL_STATE(1857)] = 105971, - [SMALL_STATE(1858)] = 105997, - [SMALL_STATE(1859)] = 106015, - [SMALL_STATE(1860)] = 106033, - [SMALL_STATE(1861)] = 106055, - [SMALL_STATE(1862)] = 106079, - [SMALL_STATE(1863)] = 106101, - [SMALL_STATE(1864)] = 106127, - [SMALL_STATE(1865)] = 106153, - [SMALL_STATE(1866)] = 106179, - [SMALL_STATE(1867)] = 106197, - [SMALL_STATE(1868)] = 106221, - [SMALL_STATE(1869)] = 106239, - [SMALL_STATE(1870)] = 106265, - [SMALL_STATE(1871)] = 106291, - [SMALL_STATE(1872)] = 106317, - [SMALL_STATE(1873)] = 106343, - [SMALL_STATE(1874)] = 106363, - [SMALL_STATE(1875)] = 106379, - [SMALL_STATE(1876)] = 106397, - [SMALL_STATE(1877)] = 106417, - [SMALL_STATE(1878)] = 106435, - [SMALL_STATE(1879)] = 106459, - [SMALL_STATE(1880)] = 106485, - [SMALL_STATE(1881)] = 106507, - [SMALL_STATE(1882)] = 106527, - [SMALL_STATE(1883)] = 106553, - [SMALL_STATE(1884)] = 106571, - [SMALL_STATE(1885)] = 106589, - [SMALL_STATE(1886)] = 106607, - [SMALL_STATE(1887)] = 106629, - [SMALL_STATE(1888)] = 106651, - [SMALL_STATE(1889)] = 106677, - [SMALL_STATE(1890)] = 106703, - [SMALL_STATE(1891)] = 106725, - [SMALL_STATE(1892)] = 106741, - [SMALL_STATE(1893)] = 106759, - [SMALL_STATE(1894)] = 106781, - [SMALL_STATE(1895)] = 106799, - [SMALL_STATE(1896)] = 106814, - [SMALL_STATE(1897)] = 106835, - [SMALL_STATE(1898)] = 106852, - [SMALL_STATE(1899)] = 106873, - [SMALL_STATE(1900)] = 106894, - [SMALL_STATE(1901)] = 106915, - [SMALL_STATE(1902)] = 106932, - [SMALL_STATE(1903)] = 106945, - [SMALL_STATE(1904)] = 106960, - [SMALL_STATE(1905)] = 106977, - [SMALL_STATE(1906)] = 106992, - [SMALL_STATE(1907)] = 107013, - [SMALL_STATE(1908)] = 107028, - [SMALL_STATE(1909)] = 107045, - [SMALL_STATE(1910)] = 107058, - [SMALL_STATE(1911)] = 107071, - [SMALL_STATE(1912)] = 107094, - [SMALL_STATE(1913)] = 107109, - [SMALL_STATE(1914)] = 107132, - [SMALL_STATE(1915)] = 107149, - [SMALL_STATE(1916)] = 107170, - [SMALL_STATE(1917)] = 107187, - [SMALL_STATE(1918)] = 107200, - [SMALL_STATE(1919)] = 107213, - [SMALL_STATE(1920)] = 107226, - [SMALL_STATE(1921)] = 107245, - [SMALL_STATE(1922)] = 107262, - [SMALL_STATE(1923)] = 107275, - [SMALL_STATE(1924)] = 107288, - [SMALL_STATE(1925)] = 107309, - [SMALL_STATE(1926)] = 107326, - [SMALL_STATE(1927)] = 107347, - [SMALL_STATE(1928)] = 107368, - [SMALL_STATE(1929)] = 107389, - [SMALL_STATE(1930)] = 107406, - [SMALL_STATE(1931)] = 107419, - [SMALL_STATE(1932)] = 107440, - [SMALL_STATE(1933)] = 107457, - [SMALL_STATE(1934)] = 107474, - [SMALL_STATE(1935)] = 107491, - [SMALL_STATE(1936)] = 107504, - [SMALL_STATE(1937)] = 107525, - [SMALL_STATE(1938)] = 107540, - [SMALL_STATE(1939)] = 107553, - [SMALL_STATE(1940)] = 107574, - [SMALL_STATE(1941)] = 107591, - [SMALL_STATE(1942)] = 107612, - [SMALL_STATE(1943)] = 107629, - [SMALL_STATE(1944)] = 107652, - [SMALL_STATE(1945)] = 107673, - [SMALL_STATE(1946)] = 107690, - [SMALL_STATE(1947)] = 107705, - [SMALL_STATE(1948)] = 107718, - [SMALL_STATE(1949)] = 107739, - [SMALL_STATE(1950)] = 107760, - [SMALL_STATE(1951)] = 107783, - [SMALL_STATE(1952)] = 107800, - [SMALL_STATE(1953)] = 107813, - [SMALL_STATE(1954)] = 107834, - [SMALL_STATE(1955)] = 107851, - [SMALL_STATE(1956)] = 107868, - [SMALL_STATE(1957)] = 107881, - [SMALL_STATE(1958)] = 107898, - [SMALL_STATE(1959)] = 107911, - [SMALL_STATE(1960)] = 107930, - [SMALL_STATE(1961)] = 107947, - [SMALL_STATE(1962)] = 107964, - [SMALL_STATE(1963)] = 107979, - [SMALL_STATE(1964)] = 107996, - [SMALL_STATE(1965)] = 108017, - [SMALL_STATE(1966)] = 108034, - [SMALL_STATE(1967)] = 108051, - [SMALL_STATE(1968)] = 108064, - [SMALL_STATE(1969)] = 108077, - [SMALL_STATE(1970)] = 108094, - [SMALL_STATE(1971)] = 108107, - [SMALL_STATE(1972)] = 108128, - [SMALL_STATE(1973)] = 108145, - [SMALL_STATE(1974)] = 108162, - [SMALL_STATE(1975)] = 108183, - [SMALL_STATE(1976)] = 108206, - [SMALL_STATE(1977)] = 108223, - [SMALL_STATE(1978)] = 108246, - [SMALL_STATE(1979)] = 108263, - [SMALL_STATE(1980)] = 108280, - [SMALL_STATE(1981)] = 108297, - [SMALL_STATE(1982)] = 108318, - [SMALL_STATE(1983)] = 108339, - [SMALL_STATE(1984)] = 108352, - [SMALL_STATE(1985)] = 108365, - [SMALL_STATE(1986)] = 108386, - [SMALL_STATE(1987)] = 108407, - [SMALL_STATE(1988)] = 108428, - [SMALL_STATE(1989)] = 108441, - [SMALL_STATE(1990)] = 108454, - [SMALL_STATE(1991)] = 108467, - [SMALL_STATE(1992)] = 108488, - [SMALL_STATE(1993)] = 108509, - [SMALL_STATE(1994)] = 108526, - [SMALL_STATE(1995)] = 108543, - [SMALL_STATE(1996)] = 108560, - [SMALL_STATE(1997)] = 108581, - [SMALL_STATE(1998)] = 108602, - [SMALL_STATE(1999)] = 108625, - [SMALL_STATE(2000)] = 108646, - [SMALL_STATE(2001)] = 108667, - [SMALL_STATE(2002)] = 108684, - [SMALL_STATE(2003)] = 108701, - [SMALL_STATE(2004)] = 108714, - [SMALL_STATE(2005)] = 108726, - [SMALL_STATE(2006)] = 108746, - [SMALL_STATE(2007)] = 108766, - [SMALL_STATE(2008)] = 108778, - [SMALL_STATE(2009)] = 108792, - [SMALL_STATE(2010)] = 108808, - [SMALL_STATE(2011)] = 108820, - [SMALL_STATE(2012)] = 108832, - [SMALL_STATE(2013)] = 108844, - [SMALL_STATE(2014)] = 108864, - [SMALL_STATE(2015)] = 108876, - [SMALL_STATE(2016)] = 108888, - [SMALL_STATE(2017)] = 108904, - [SMALL_STATE(2018)] = 108920, - [SMALL_STATE(2019)] = 108940, - [SMALL_STATE(2020)] = 108952, - [SMALL_STATE(2021)] = 108964, - [SMALL_STATE(2022)] = 108982, - [SMALL_STATE(2023)] = 108994, - [SMALL_STATE(2024)] = 109010, - [SMALL_STATE(2025)] = 109030, - [SMALL_STATE(2026)] = 109042, - [SMALL_STATE(2027)] = 109062, - [SMALL_STATE(2028)] = 109074, - [SMALL_STATE(2029)] = 109094, - [SMALL_STATE(2030)] = 109106, - [SMALL_STATE(2031)] = 109118, - [SMALL_STATE(2032)] = 109130, - [SMALL_STATE(2033)] = 109148, - [SMALL_STATE(2034)] = 109168, - [SMALL_STATE(2035)] = 109188, - [SMALL_STATE(2036)] = 109200, - [SMALL_STATE(2037)] = 109218, - [SMALL_STATE(2038)] = 109236, - [SMALL_STATE(2039)] = 109248, - [SMALL_STATE(2040)] = 109268, - [SMALL_STATE(2041)] = 109280, - [SMALL_STATE(2042)] = 109292, - [SMALL_STATE(2043)] = 109304, - [SMALL_STATE(2044)] = 109316, - [SMALL_STATE(2045)] = 109334, - [SMALL_STATE(2046)] = 109346, - [SMALL_STATE(2047)] = 109366, - [SMALL_STATE(2048)] = 109378, - [SMALL_STATE(2049)] = 109390, - [SMALL_STATE(2050)] = 109402, - [SMALL_STATE(2051)] = 109414, - [SMALL_STATE(2052)] = 109434, - [SMALL_STATE(2053)] = 109450, - [SMALL_STATE(2054)] = 109470, - [SMALL_STATE(2055)] = 109490, - [SMALL_STATE(2056)] = 109502, - [SMALL_STATE(2057)] = 109522, - [SMALL_STATE(2058)] = 109542, - [SMALL_STATE(2059)] = 109558, - [SMALL_STATE(2060)] = 109572, - [SMALL_STATE(2061)] = 109588, - [SMALL_STATE(2062)] = 109600, - [SMALL_STATE(2063)] = 109612, - [SMALL_STATE(2064)] = 109628, - [SMALL_STATE(2065)] = 109640, - [SMALL_STATE(2066)] = 109660, - [SMALL_STATE(2067)] = 109674, - [SMALL_STATE(2068)] = 109694, - [SMALL_STATE(2069)] = 109714, - [SMALL_STATE(2070)] = 109728, - [SMALL_STATE(2071)] = 109748, - [SMALL_STATE(2072)] = 109768, - [SMALL_STATE(2073)] = 109784, - [SMALL_STATE(2074)] = 109796, - [SMALL_STATE(2075)] = 109808, - [SMALL_STATE(2076)] = 109828, - [SMALL_STATE(2077)] = 109840, - [SMALL_STATE(2078)] = 109852, - [SMALL_STATE(2079)] = 109864, - [SMALL_STATE(2080)] = 109882, - [SMALL_STATE(2081)] = 109902, - [SMALL_STATE(2082)] = 109914, - [SMALL_STATE(2083)] = 109932, - [SMALL_STATE(2084)] = 109944, - [SMALL_STATE(2085)] = 109956, - [SMALL_STATE(2086)] = 109970, - [SMALL_STATE(2087)] = 109982, - [SMALL_STATE(2088)] = 109998, - [SMALL_STATE(2089)] = 110010, - [SMALL_STATE(2090)] = 110030, - [SMALL_STATE(2091)] = 110042, - [SMALL_STATE(2092)] = 110062, - [SMALL_STATE(2093)] = 110074, - [SMALL_STATE(2094)] = 110090, - [SMALL_STATE(2095)] = 110110, - [SMALL_STATE(2096)] = 110122, - [SMALL_STATE(2097)] = 110142, - [SMALL_STATE(2098)] = 110154, - [SMALL_STATE(2099)] = 110166, - [SMALL_STATE(2100)] = 110182, - [SMALL_STATE(2101)] = 110200, - [SMALL_STATE(2102)] = 110218, - [SMALL_STATE(2103)] = 110230, - [SMALL_STATE(2104)] = 110250, - [SMALL_STATE(2105)] = 110268, - [SMALL_STATE(2106)] = 110284, - [SMALL_STATE(2107)] = 110298, - [SMALL_STATE(2108)] = 110310, - [SMALL_STATE(2109)] = 110328, - [SMALL_STATE(2110)] = 110346, - [SMALL_STATE(2111)] = 110366, - [SMALL_STATE(2112)] = 110382, - [SMALL_STATE(2113)] = 110394, - [SMALL_STATE(2114)] = 110406, - [SMALL_STATE(2115)] = 110424, - [SMALL_STATE(2116)] = 110436, - [SMALL_STATE(2117)] = 110448, - [SMALL_STATE(2118)] = 110468, - [SMALL_STATE(2119)] = 110480, - [SMALL_STATE(2120)] = 110492, - [SMALL_STATE(2121)] = 110504, - [SMALL_STATE(2122)] = 110520, - [SMALL_STATE(2123)] = 110532, - [SMALL_STATE(2124)] = 110552, - [SMALL_STATE(2125)] = 110563, - [SMALL_STATE(2126)] = 110574, - [SMALL_STATE(2127)] = 110585, - [SMALL_STATE(2128)] = 110596, - [SMALL_STATE(2129)] = 110607, - [SMALL_STATE(2130)] = 110618, - [SMALL_STATE(2131)] = 110629, - [SMALL_STATE(2132)] = 110646, - [SMALL_STATE(2133)] = 110657, - [SMALL_STATE(2134)] = 110668, - [SMALL_STATE(2135)] = 110679, - [SMALL_STATE(2136)] = 110690, - [SMALL_STATE(2137)] = 110701, - [SMALL_STATE(2138)] = 110712, - [SMALL_STATE(2139)] = 110723, - [SMALL_STATE(2140)] = 110734, - [SMALL_STATE(2141)] = 110745, - [SMALL_STATE(2142)] = 110756, - [SMALL_STATE(2143)] = 110767, - [SMALL_STATE(2144)] = 110778, - [SMALL_STATE(2145)] = 110789, - [SMALL_STATE(2146)] = 110800, - [SMALL_STATE(2147)] = 110811, - [SMALL_STATE(2148)] = 110822, - [SMALL_STATE(2149)] = 110833, - [SMALL_STATE(2150)] = 110844, - [SMALL_STATE(2151)] = 110855, - [SMALL_STATE(2152)] = 110866, - [SMALL_STATE(2153)] = 110877, - [SMALL_STATE(2154)] = 110894, - [SMALL_STATE(2155)] = 110911, - [SMALL_STATE(2156)] = 110926, - [SMALL_STATE(2157)] = 110941, - [SMALL_STATE(2158)] = 110956, - [SMALL_STATE(2159)] = 110973, - [SMALL_STATE(2160)] = 110988, - [SMALL_STATE(2161)] = 111005, - [SMALL_STATE(2162)] = 111018, - [SMALL_STATE(2163)] = 111029, - [SMALL_STATE(2164)] = 111046, - [SMALL_STATE(2165)] = 111061, - [SMALL_STATE(2166)] = 111072, - [SMALL_STATE(2167)] = 111083, - [SMALL_STATE(2168)] = 111094, - [SMALL_STATE(2169)] = 111105, - [SMALL_STATE(2170)] = 111116, - [SMALL_STATE(2171)] = 111127, - [SMALL_STATE(2172)] = 111138, - [SMALL_STATE(2173)] = 111149, - [SMALL_STATE(2174)] = 111164, - [SMALL_STATE(2175)] = 111175, - [SMALL_STATE(2176)] = 111190, - [SMALL_STATE(2177)] = 111201, - [SMALL_STATE(2178)] = 111212, - [SMALL_STATE(2179)] = 111223, - [SMALL_STATE(2180)] = 111234, - [SMALL_STATE(2181)] = 111245, - [SMALL_STATE(2182)] = 111256, - [SMALL_STATE(2183)] = 111267, - [SMALL_STATE(2184)] = 111278, - [SMALL_STATE(2185)] = 111291, - [SMALL_STATE(2186)] = 111302, - [SMALL_STATE(2187)] = 111313, - [SMALL_STATE(2188)] = 111324, - [SMALL_STATE(2189)] = 111335, - [SMALL_STATE(2190)] = 111346, - [SMALL_STATE(2191)] = 111363, - [SMALL_STATE(2192)] = 111380, - [SMALL_STATE(2193)] = 111391, - [SMALL_STATE(2194)] = 111402, - [SMALL_STATE(2195)] = 111419, - [SMALL_STATE(2196)] = 111436, - [SMALL_STATE(2197)] = 111447, - [SMALL_STATE(2198)] = 111462, - [SMALL_STATE(2199)] = 111479, - [SMALL_STATE(2200)] = 111494, - [SMALL_STATE(2201)] = 111509, - [SMALL_STATE(2202)] = 111526, - [SMALL_STATE(2203)] = 111543, - [SMALL_STATE(2204)] = 111560, - [SMALL_STATE(2205)] = 111577, - [SMALL_STATE(2206)] = 111594, - [SMALL_STATE(2207)] = 111605, - [SMALL_STATE(2208)] = 111622, - [SMALL_STATE(2209)] = 111633, - [SMALL_STATE(2210)] = 111648, - [SMALL_STATE(2211)] = 111659, - [SMALL_STATE(2212)] = 111670, - [SMALL_STATE(2213)] = 111681, - [SMALL_STATE(2214)] = 111692, - [SMALL_STATE(2215)] = 111709, - [SMALL_STATE(2216)] = 111726, - [SMALL_STATE(2217)] = 111741, - [SMALL_STATE(2218)] = 111756, - [SMALL_STATE(2219)] = 111771, - [SMALL_STATE(2220)] = 111782, - [SMALL_STATE(2221)] = 111793, - [SMALL_STATE(2222)] = 111804, - [SMALL_STATE(2223)] = 111815, - [SMALL_STATE(2224)] = 111826, - [SMALL_STATE(2225)] = 111843, - [SMALL_STATE(2226)] = 111854, - [SMALL_STATE(2227)] = 111865, - [SMALL_STATE(2228)] = 111880, - [SMALL_STATE(2229)] = 111891, - [SMALL_STATE(2230)] = 111904, - [SMALL_STATE(2231)] = 111919, - [SMALL_STATE(2232)] = 111936, - [SMALL_STATE(2233)] = 111953, - [SMALL_STATE(2234)] = 111964, - [SMALL_STATE(2235)] = 111981, - [SMALL_STATE(2236)] = 111992, - [SMALL_STATE(2237)] = 112003, - [SMALL_STATE(2238)] = 112020, - [SMALL_STATE(2239)] = 112035, - [SMALL_STATE(2240)] = 112050, - [SMALL_STATE(2241)] = 112061, - [SMALL_STATE(2242)] = 112078, - [SMALL_STATE(2243)] = 112089, - [SMALL_STATE(2244)] = 112100, - [SMALL_STATE(2245)] = 112117, - [SMALL_STATE(2246)] = 112132, - [SMALL_STATE(2247)] = 112149, - [SMALL_STATE(2248)] = 112166, - [SMALL_STATE(2249)] = 112183, - [SMALL_STATE(2250)] = 112200, - [SMALL_STATE(2251)] = 112217, - [SMALL_STATE(2252)] = 112234, - [SMALL_STATE(2253)] = 112249, - [SMALL_STATE(2254)] = 112263, - [SMALL_STATE(2255)] = 112277, - [SMALL_STATE(2256)] = 112291, - [SMALL_STATE(2257)] = 112305, - [SMALL_STATE(2258)] = 112319, - [SMALL_STATE(2259)] = 112333, - [SMALL_STATE(2260)] = 112347, - [SMALL_STATE(2261)] = 112361, - [SMALL_STATE(2262)] = 112375, - [SMALL_STATE(2263)] = 112389, - [SMALL_STATE(2264)] = 112403, - [SMALL_STATE(2265)] = 112417, - [SMALL_STATE(2266)] = 112431, - [SMALL_STATE(2267)] = 112445, - [SMALL_STATE(2268)] = 112459, - [SMALL_STATE(2269)] = 112473, - [SMALL_STATE(2270)] = 112487, - [SMALL_STATE(2271)] = 112501, - [SMALL_STATE(2272)] = 112515, - [SMALL_STATE(2273)] = 112527, - [SMALL_STATE(2274)] = 112541, - [SMALL_STATE(2275)] = 112553, - [SMALL_STATE(2276)] = 112567, - [SMALL_STATE(2277)] = 112581, - [SMALL_STATE(2278)] = 112595, - [SMALL_STATE(2279)] = 112609, - [SMALL_STATE(2280)] = 112623, - [SMALL_STATE(2281)] = 112637, - [SMALL_STATE(2282)] = 112651, - [SMALL_STATE(2283)] = 112665, - [SMALL_STATE(2284)] = 112679, - [SMALL_STATE(2285)] = 112693, - [SMALL_STATE(2286)] = 112707, - [SMALL_STATE(2287)] = 112721, - [SMALL_STATE(2288)] = 112735, - [SMALL_STATE(2289)] = 112749, - [SMALL_STATE(2290)] = 112763, - [SMALL_STATE(2291)] = 112777, - [SMALL_STATE(2292)] = 112791, - [SMALL_STATE(2293)] = 112805, - [SMALL_STATE(2294)] = 112819, - [SMALL_STATE(2295)] = 112833, - [SMALL_STATE(2296)] = 112843, - [SMALL_STATE(2297)] = 112857, - [SMALL_STATE(2298)] = 112867, - [SMALL_STATE(2299)] = 112881, - [SMALL_STATE(2300)] = 112895, - [SMALL_STATE(2301)] = 112909, - [SMALL_STATE(2302)] = 112923, - [SMALL_STATE(2303)] = 112933, - [SMALL_STATE(2304)] = 112947, - [SMALL_STATE(2305)] = 112961, - [SMALL_STATE(2306)] = 112975, - [SMALL_STATE(2307)] = 112989, - [SMALL_STATE(2308)] = 113003, - [SMALL_STATE(2309)] = 113015, - [SMALL_STATE(2310)] = 113029, - [SMALL_STATE(2311)] = 113043, - [SMALL_STATE(2312)] = 113057, - [SMALL_STATE(2313)] = 113071, - [SMALL_STATE(2314)] = 113085, - [SMALL_STATE(2315)] = 113099, - [SMALL_STATE(2316)] = 113113, - [SMALL_STATE(2317)] = 113127, - [SMALL_STATE(2318)] = 113141, - [SMALL_STATE(2319)] = 113155, - [SMALL_STATE(2320)] = 113169, - [SMALL_STATE(2321)] = 113183, - [SMALL_STATE(2322)] = 113197, - [SMALL_STATE(2323)] = 113211, - [SMALL_STATE(2324)] = 113225, - [SMALL_STATE(2325)] = 113239, - [SMALL_STATE(2326)] = 113251, - [SMALL_STATE(2327)] = 113265, - [SMALL_STATE(2328)] = 113277, - [SMALL_STATE(2329)] = 113291, - [SMALL_STATE(2330)] = 113305, - [SMALL_STATE(2331)] = 113319, - [SMALL_STATE(2332)] = 113333, - [SMALL_STATE(2333)] = 113347, - [SMALL_STATE(2334)] = 113361, - [SMALL_STATE(2335)] = 113375, - [SMALL_STATE(2336)] = 113389, - [SMALL_STATE(2337)] = 113401, - [SMALL_STATE(2338)] = 113413, - [SMALL_STATE(2339)] = 113427, - [SMALL_STATE(2340)] = 113439, - [SMALL_STATE(2341)] = 113453, - [SMALL_STATE(2342)] = 113467, - [SMALL_STATE(2343)] = 113479, - [SMALL_STATE(2344)] = 113491, - [SMALL_STATE(2345)] = 113503, - [SMALL_STATE(2346)] = 113517, - [SMALL_STATE(2347)] = 113531, - [SMALL_STATE(2348)] = 113545, - [SMALL_STATE(2349)] = 113559, - [SMALL_STATE(2350)] = 113573, - [SMALL_STATE(2351)] = 113587, - [SMALL_STATE(2352)] = 113601, - [SMALL_STATE(2353)] = 113615, - [SMALL_STATE(2354)] = 113629, - [SMALL_STATE(2355)] = 113643, - [SMALL_STATE(2356)] = 113657, - [SMALL_STATE(2357)] = 113671, - [SMALL_STATE(2358)] = 113685, - [SMALL_STATE(2359)] = 113699, - [SMALL_STATE(2360)] = 113713, - [SMALL_STATE(2361)] = 113727, - [SMALL_STATE(2362)] = 113741, - [SMALL_STATE(2363)] = 113755, - [SMALL_STATE(2364)] = 113769, - [SMALL_STATE(2365)] = 113783, - [SMALL_STATE(2366)] = 113797, - [SMALL_STATE(2367)] = 113811, - [SMALL_STATE(2368)] = 113821, - [SMALL_STATE(2369)] = 113835, - [SMALL_STATE(2370)] = 113847, - [SMALL_STATE(2371)] = 113859, - [SMALL_STATE(2372)] = 113869, - [SMALL_STATE(2373)] = 113883, - [SMALL_STATE(2374)] = 113897, - [SMALL_STATE(2375)] = 113911, - [SMALL_STATE(2376)] = 113925, - [SMALL_STATE(2377)] = 113939, - [SMALL_STATE(2378)] = 113953, - [SMALL_STATE(2379)] = 113967, - [SMALL_STATE(2380)] = 113981, - [SMALL_STATE(2381)] = 113995, - [SMALL_STATE(2382)] = 114009, - [SMALL_STATE(2383)] = 114023, - [SMALL_STATE(2384)] = 114037, - [SMALL_STATE(2385)] = 114051, - [SMALL_STATE(2386)] = 114065, - [SMALL_STATE(2387)] = 114079, - [SMALL_STATE(2388)] = 114093, - [SMALL_STATE(2389)] = 114107, - [SMALL_STATE(2390)] = 114121, - [SMALL_STATE(2391)] = 114135, - [SMALL_STATE(2392)] = 114149, - [SMALL_STATE(2393)] = 114161, - [SMALL_STATE(2394)] = 114175, - [SMALL_STATE(2395)] = 114189, - [SMALL_STATE(2396)] = 114203, - [SMALL_STATE(2397)] = 114217, - [SMALL_STATE(2398)] = 114231, - [SMALL_STATE(2399)] = 114243, - [SMALL_STATE(2400)] = 114255, - [SMALL_STATE(2401)] = 114269, - [SMALL_STATE(2402)] = 114283, - [SMALL_STATE(2403)] = 114295, - [SMALL_STATE(2404)] = 114309, - [SMALL_STATE(2405)] = 114323, - [SMALL_STATE(2406)] = 114337, - [SMALL_STATE(2407)] = 114351, - [SMALL_STATE(2408)] = 114365, - [SMALL_STATE(2409)] = 114379, - [SMALL_STATE(2410)] = 114393, - [SMALL_STATE(2411)] = 114407, - [SMALL_STATE(2412)] = 114421, - [SMALL_STATE(2413)] = 114435, - [SMALL_STATE(2414)] = 114449, - [SMALL_STATE(2415)] = 114463, - [SMALL_STATE(2416)] = 114477, - [SMALL_STATE(2417)] = 114491, - [SMALL_STATE(2418)] = 114505, - [SMALL_STATE(2419)] = 114519, - [SMALL_STATE(2420)] = 114531, - [SMALL_STATE(2421)] = 114545, - [SMALL_STATE(2422)] = 114559, - [SMALL_STATE(2423)] = 114571, - [SMALL_STATE(2424)] = 114585, - [SMALL_STATE(2425)] = 114599, - [SMALL_STATE(2426)] = 114613, - [SMALL_STATE(2427)] = 114623, - [SMALL_STATE(2428)] = 114635, - [SMALL_STATE(2429)] = 114649, - [SMALL_STATE(2430)] = 114663, - [SMALL_STATE(2431)] = 114677, - [SMALL_STATE(2432)] = 114691, - [SMALL_STATE(2433)] = 114701, - [SMALL_STATE(2434)] = 114715, - [SMALL_STATE(2435)] = 114729, - [SMALL_STATE(2436)] = 114743, - [SMALL_STATE(2437)] = 114753, - [SMALL_STATE(2438)] = 114767, - [SMALL_STATE(2439)] = 114781, - [SMALL_STATE(2440)] = 114795, - [SMALL_STATE(2441)] = 114809, - [SMALL_STATE(2442)] = 114823, - [SMALL_STATE(2443)] = 114837, - [SMALL_STATE(2444)] = 114851, - [SMALL_STATE(2445)] = 114865, - [SMALL_STATE(2446)] = 114879, - [SMALL_STATE(2447)] = 114893, - [SMALL_STATE(2448)] = 114907, - [SMALL_STATE(2449)] = 114921, - [SMALL_STATE(2450)] = 114935, - [SMALL_STATE(2451)] = 114949, - [SMALL_STATE(2452)] = 114963, - [SMALL_STATE(2453)] = 114977, - [SMALL_STATE(2454)] = 114991, - [SMALL_STATE(2455)] = 115005, - [SMALL_STATE(2456)] = 115017, - [SMALL_STATE(2457)] = 115031, - [SMALL_STATE(2458)] = 115045, - [SMALL_STATE(2459)] = 115059, - [SMALL_STATE(2460)] = 115073, - [SMALL_STATE(2461)] = 115087, - [SMALL_STATE(2462)] = 115097, - [SMALL_STATE(2463)] = 115111, - [SMALL_STATE(2464)] = 115125, - [SMALL_STATE(2465)] = 115135, - [SMALL_STATE(2466)] = 115147, - [SMALL_STATE(2467)] = 115161, - [SMALL_STATE(2468)] = 115175, - [SMALL_STATE(2469)] = 115189, - [SMALL_STATE(2470)] = 115203, - [SMALL_STATE(2471)] = 115217, - [SMALL_STATE(2472)] = 115231, - [SMALL_STATE(2473)] = 115241, - [SMALL_STATE(2474)] = 115255, - [SMALL_STATE(2475)] = 115269, - [SMALL_STATE(2476)] = 115283, - [SMALL_STATE(2477)] = 115297, - [SMALL_STATE(2478)] = 115311, - [SMALL_STATE(2479)] = 115325, - [SMALL_STATE(2480)] = 115339, - [SMALL_STATE(2481)] = 115353, - [SMALL_STATE(2482)] = 115367, - [SMALL_STATE(2483)] = 115381, - [SMALL_STATE(2484)] = 115395, - [SMALL_STATE(2485)] = 115409, - [SMALL_STATE(2486)] = 115423, - [SMALL_STATE(2487)] = 115437, - [SMALL_STATE(2488)] = 115449, - [SMALL_STATE(2489)] = 115463, - [SMALL_STATE(2490)] = 115477, - [SMALL_STATE(2491)] = 115491, - [SMALL_STATE(2492)] = 115505, - [SMALL_STATE(2493)] = 115519, - [SMALL_STATE(2494)] = 115529, - [SMALL_STATE(2495)] = 115543, - [SMALL_STATE(2496)] = 115553, - [SMALL_STATE(2497)] = 115563, - [SMALL_STATE(2498)] = 115577, - [SMALL_STATE(2499)] = 115591, - [SMALL_STATE(2500)] = 115605, - [SMALL_STATE(2501)] = 115619, - [SMALL_STATE(2502)] = 115633, - [SMALL_STATE(2503)] = 115647, - [SMALL_STATE(2504)] = 115661, - [SMALL_STATE(2505)] = 115673, - [SMALL_STATE(2506)] = 115687, - [SMALL_STATE(2507)] = 115701, - [SMALL_STATE(2508)] = 115715, - [SMALL_STATE(2509)] = 115729, - [SMALL_STATE(2510)] = 115743, - [SMALL_STATE(2511)] = 115757, - [SMALL_STATE(2512)] = 115771, - [SMALL_STATE(2513)] = 115785, - [SMALL_STATE(2514)] = 115794, - [SMALL_STATE(2515)] = 115803, - [SMALL_STATE(2516)] = 115814, - [SMALL_STATE(2517)] = 115823, - [SMALL_STATE(2518)] = 115832, - [SMALL_STATE(2519)] = 115843, - [SMALL_STATE(2520)] = 115852, - [SMALL_STATE(2521)] = 115861, - [SMALL_STATE(2522)] = 115870, - [SMALL_STATE(2523)] = 115879, - [SMALL_STATE(2524)] = 115888, - [SMALL_STATE(2525)] = 115899, - [SMALL_STATE(2526)] = 115908, - [SMALL_STATE(2527)] = 115917, - [SMALL_STATE(2528)] = 115928, - [SMALL_STATE(2529)] = 115937, - [SMALL_STATE(2530)] = 115946, - [SMALL_STATE(2531)] = 115955, - [SMALL_STATE(2532)] = 115964, - [SMALL_STATE(2533)] = 115973, - [SMALL_STATE(2534)] = 115984, - [SMALL_STATE(2535)] = 115993, - [SMALL_STATE(2536)] = 116002, - [SMALL_STATE(2537)] = 116013, - [SMALL_STATE(2538)] = 116022, - [SMALL_STATE(2539)] = 116031, - [SMALL_STATE(2540)] = 116040, - [SMALL_STATE(2541)] = 116049, - [SMALL_STATE(2542)] = 116058, - [SMALL_STATE(2543)] = 116067, - [SMALL_STATE(2544)] = 116078, - [SMALL_STATE(2545)] = 116087, - [SMALL_STATE(2546)] = 116096, - [SMALL_STATE(2547)] = 116107, - [SMALL_STATE(2548)] = 116116, - [SMALL_STATE(2549)] = 116125, - [SMALL_STATE(2550)] = 116134, - [SMALL_STATE(2551)] = 116143, - [SMALL_STATE(2552)] = 116152, - [SMALL_STATE(2553)] = 116161, - [SMALL_STATE(2554)] = 116172, - [SMALL_STATE(2555)] = 116181, - [SMALL_STATE(2556)] = 116190, - [SMALL_STATE(2557)] = 116201, - [SMALL_STATE(2558)] = 116210, - [SMALL_STATE(2559)] = 116219, - [SMALL_STATE(2560)] = 116230, - [SMALL_STATE(2561)] = 116239, - [SMALL_STATE(2562)] = 116248, - [SMALL_STATE(2563)] = 116257, - [SMALL_STATE(2564)] = 116266, - [SMALL_STATE(2565)] = 116275, - [SMALL_STATE(2566)] = 116284, - [SMALL_STATE(2567)] = 116293, - [SMALL_STATE(2568)] = 116302, - [SMALL_STATE(2569)] = 116311, - [SMALL_STATE(2570)] = 116320, - [SMALL_STATE(2571)] = 116329, - [SMALL_STATE(2572)] = 116338, - [SMALL_STATE(2573)] = 116349, - [SMALL_STATE(2574)] = 116358, - [SMALL_STATE(2575)] = 116367, - [SMALL_STATE(2576)] = 116378, - [SMALL_STATE(2577)] = 116387, - [SMALL_STATE(2578)] = 116396, - [SMALL_STATE(2579)] = 116405, - [SMALL_STATE(2580)] = 116414, - [SMALL_STATE(2581)] = 116423, - [SMALL_STATE(2582)] = 116432, - [SMALL_STATE(2583)] = 116441, - [SMALL_STATE(2584)] = 116450, - [SMALL_STATE(2585)] = 116459, - [SMALL_STATE(2586)] = 116470, - [SMALL_STATE(2587)] = 116481, - [SMALL_STATE(2588)] = 116492, - [SMALL_STATE(2589)] = 116503, - [SMALL_STATE(2590)] = 116514, - [SMALL_STATE(2591)] = 116525, - [SMALL_STATE(2592)] = 116534, - [SMALL_STATE(2593)] = 116545, - [SMALL_STATE(2594)] = 116554, - [SMALL_STATE(2595)] = 116565, - [SMALL_STATE(2596)] = 116574, - [SMALL_STATE(2597)] = 116583, - [SMALL_STATE(2598)] = 116592, - [SMALL_STATE(2599)] = 116601, - [SMALL_STATE(2600)] = 116610, - [SMALL_STATE(2601)] = 116621, - [SMALL_STATE(2602)] = 116630, - [SMALL_STATE(2603)] = 116641, - [SMALL_STATE(2604)] = 116650, - [SMALL_STATE(2605)] = 116659, - [SMALL_STATE(2606)] = 116668, - [SMALL_STATE(2607)] = 116677, - [SMALL_STATE(2608)] = 116688, - [SMALL_STATE(2609)] = 116697, - [SMALL_STATE(2610)] = 116708, - [SMALL_STATE(2611)] = 116717, - [SMALL_STATE(2612)] = 116726, - [SMALL_STATE(2613)] = 116735, - [SMALL_STATE(2614)] = 116744, - [SMALL_STATE(2615)] = 116752, - [SMALL_STATE(2616)] = 116760, - [SMALL_STATE(2617)] = 116768, - [SMALL_STATE(2618)] = 116776, - [SMALL_STATE(2619)] = 116784, - [SMALL_STATE(2620)] = 116792, - [SMALL_STATE(2621)] = 116800, - [SMALL_STATE(2622)] = 116808, - [SMALL_STATE(2623)] = 116816, - [SMALL_STATE(2624)] = 116824, - [SMALL_STATE(2625)] = 116832, - [SMALL_STATE(2626)] = 116840, - [SMALL_STATE(2627)] = 116848, - [SMALL_STATE(2628)] = 116856, - [SMALL_STATE(2629)] = 116864, - [SMALL_STATE(2630)] = 116872, - [SMALL_STATE(2631)] = 116880, - [SMALL_STATE(2632)] = 116888, - [SMALL_STATE(2633)] = 116896, - [SMALL_STATE(2634)] = 116904, - [SMALL_STATE(2635)] = 116912, - [SMALL_STATE(2636)] = 116920, - [SMALL_STATE(2637)] = 116928, - [SMALL_STATE(2638)] = 116936, - [SMALL_STATE(2639)] = 116944, - [SMALL_STATE(2640)] = 116952, - [SMALL_STATE(2641)] = 116960, - [SMALL_STATE(2642)] = 116968, - [SMALL_STATE(2643)] = 116976, - [SMALL_STATE(2644)] = 116984, - [SMALL_STATE(2645)] = 116992, - [SMALL_STATE(2646)] = 117000, - [SMALL_STATE(2647)] = 117008, - [SMALL_STATE(2648)] = 117016, - [SMALL_STATE(2649)] = 117024, - [SMALL_STATE(2650)] = 117032, - [SMALL_STATE(2651)] = 117040, - [SMALL_STATE(2652)] = 117048, - [SMALL_STATE(2653)] = 117056, - [SMALL_STATE(2654)] = 117064, - [SMALL_STATE(2655)] = 117072, - [SMALL_STATE(2656)] = 117080, - [SMALL_STATE(2657)] = 117088, - [SMALL_STATE(2658)] = 117096, - [SMALL_STATE(2659)] = 117104, - [SMALL_STATE(2660)] = 117112, - [SMALL_STATE(2661)] = 117120, - [SMALL_STATE(2662)] = 117128, - [SMALL_STATE(2663)] = 117136, - [SMALL_STATE(2664)] = 117144, - [SMALL_STATE(2665)] = 117152, - [SMALL_STATE(2666)] = 117160, - [SMALL_STATE(2667)] = 117168, - [SMALL_STATE(2668)] = 117176, - [SMALL_STATE(2669)] = 117184, - [SMALL_STATE(2670)] = 117192, - [SMALL_STATE(2671)] = 117200, - [SMALL_STATE(2672)] = 117208, - [SMALL_STATE(2673)] = 117216, - [SMALL_STATE(2674)] = 117224, - [SMALL_STATE(2675)] = 117232, - [SMALL_STATE(2676)] = 117240, - [SMALL_STATE(2677)] = 117248, - [SMALL_STATE(2678)] = 117256, - [SMALL_STATE(2679)] = 117264, - [SMALL_STATE(2680)] = 117272, - [SMALL_STATE(2681)] = 117280, - [SMALL_STATE(2682)] = 117288, - [SMALL_STATE(2683)] = 117296, - [SMALL_STATE(2684)] = 117304, - [SMALL_STATE(2685)] = 117312, - [SMALL_STATE(2686)] = 117320, - [SMALL_STATE(2687)] = 117328, - [SMALL_STATE(2688)] = 117336, - [SMALL_STATE(2689)] = 117344, - [SMALL_STATE(2690)] = 117352, - [SMALL_STATE(2691)] = 117360, - [SMALL_STATE(2692)] = 117368, - [SMALL_STATE(2693)] = 117376, - [SMALL_STATE(2694)] = 117384, - [SMALL_STATE(2695)] = 117392, - [SMALL_STATE(2696)] = 117400, - [SMALL_STATE(2697)] = 117408, - [SMALL_STATE(2698)] = 117416, - [SMALL_STATE(2699)] = 117424, - [SMALL_STATE(2700)] = 117432, - [SMALL_STATE(2701)] = 117440, - [SMALL_STATE(2702)] = 117448, - [SMALL_STATE(2703)] = 117456, - [SMALL_STATE(2704)] = 117464, - [SMALL_STATE(2705)] = 117472, - [SMALL_STATE(2706)] = 117480, - [SMALL_STATE(2707)] = 117488, - [SMALL_STATE(2708)] = 117496, - [SMALL_STATE(2709)] = 117504, - [SMALL_STATE(2710)] = 117512, - [SMALL_STATE(2711)] = 117520, - [SMALL_STATE(2712)] = 117528, - [SMALL_STATE(2713)] = 117536, - [SMALL_STATE(2714)] = 117544, - [SMALL_STATE(2715)] = 117552, - [SMALL_STATE(2716)] = 117560, - [SMALL_STATE(2717)] = 117568, - [SMALL_STATE(2718)] = 117576, - [SMALL_STATE(2719)] = 117584, - [SMALL_STATE(2720)] = 117592, - [SMALL_STATE(2721)] = 117600, - [SMALL_STATE(2722)] = 117608, - [SMALL_STATE(2723)] = 117616, - [SMALL_STATE(2724)] = 117624, - [SMALL_STATE(2725)] = 117632, - [SMALL_STATE(2726)] = 117640, - [SMALL_STATE(2727)] = 117648, - [SMALL_STATE(2728)] = 117656, - [SMALL_STATE(2729)] = 117664, - [SMALL_STATE(2730)] = 117672, - [SMALL_STATE(2731)] = 117680, - [SMALL_STATE(2732)] = 117688, - [SMALL_STATE(2733)] = 117696, - [SMALL_STATE(2734)] = 117704, - [SMALL_STATE(2735)] = 117712, - [SMALL_STATE(2736)] = 117720, - [SMALL_STATE(2737)] = 117728, - [SMALL_STATE(2738)] = 117736, - [SMALL_STATE(2739)] = 117744, - [SMALL_STATE(2740)] = 117752, - [SMALL_STATE(2741)] = 117760, - [SMALL_STATE(2742)] = 117768, - [SMALL_STATE(2743)] = 117776, - [SMALL_STATE(2744)] = 117784, - [SMALL_STATE(2745)] = 117792, - [SMALL_STATE(2746)] = 117800, - [SMALL_STATE(2747)] = 117808, - [SMALL_STATE(2748)] = 117816, - [SMALL_STATE(2749)] = 117824, - [SMALL_STATE(2750)] = 117832, - [SMALL_STATE(2751)] = 117840, - [SMALL_STATE(2752)] = 117848, - [SMALL_STATE(2753)] = 117856, - [SMALL_STATE(2754)] = 117864, - [SMALL_STATE(2755)] = 117872, - [SMALL_STATE(2756)] = 117880, - [SMALL_STATE(2757)] = 117888, - [SMALL_STATE(2758)] = 117896, - [SMALL_STATE(2759)] = 117904, - [SMALL_STATE(2760)] = 117912, - [SMALL_STATE(2761)] = 117920, - [SMALL_STATE(2762)] = 117928, - [SMALL_STATE(2763)] = 117936, - [SMALL_STATE(2764)] = 117944, - [SMALL_STATE(2765)] = 117952, - [SMALL_STATE(2766)] = 117960, - [SMALL_STATE(2767)] = 117968, - [SMALL_STATE(2768)] = 117976, - [SMALL_STATE(2769)] = 117984, - [SMALL_STATE(2770)] = 117992, - [SMALL_STATE(2771)] = 118000, - [SMALL_STATE(2772)] = 118008, - [SMALL_STATE(2773)] = 118016, - [SMALL_STATE(2774)] = 118024, - [SMALL_STATE(2775)] = 118032, - [SMALL_STATE(2776)] = 118040, - [SMALL_STATE(2777)] = 118048, - [SMALL_STATE(2778)] = 118056, - [SMALL_STATE(2779)] = 118064, - [SMALL_STATE(2780)] = 118072, - [SMALL_STATE(2781)] = 118080, - [SMALL_STATE(2782)] = 118088, - [SMALL_STATE(2783)] = 118096, - [SMALL_STATE(2784)] = 118104, - [SMALL_STATE(2785)] = 118112, - [SMALL_STATE(2786)] = 118120, - [SMALL_STATE(2787)] = 118128, - [SMALL_STATE(2788)] = 118136, - [SMALL_STATE(2789)] = 118144, - [SMALL_STATE(2790)] = 118152, - [SMALL_STATE(2791)] = 118160, - [SMALL_STATE(2792)] = 118168, - [SMALL_STATE(2793)] = 118176, - [SMALL_STATE(2794)] = 118184, - [SMALL_STATE(2795)] = 118192, - [SMALL_STATE(2796)] = 118200, - [SMALL_STATE(2797)] = 118208, - [SMALL_STATE(2798)] = 118216, - [SMALL_STATE(2799)] = 118224, - [SMALL_STATE(2800)] = 118232, - [SMALL_STATE(2801)] = 118240, - [SMALL_STATE(2802)] = 118248, - [SMALL_STATE(2803)] = 118256, - [SMALL_STATE(2804)] = 118264, - [SMALL_STATE(2805)] = 118272, - [SMALL_STATE(2806)] = 118280, - [SMALL_STATE(2807)] = 118288, - [SMALL_STATE(2808)] = 118296, + [SMALL_STATE(184)] = 0, + [SMALL_STATE(185)] = 124, + [SMALL_STATE(186)] = 248, + [SMALL_STATE(187)] = 372, + [SMALL_STATE(188)] = 498, + [SMALL_STATE(189)] = 622, + [SMALL_STATE(190)] = 746, + [SMALL_STATE(191)] = 872, + [SMALL_STATE(192)] = 996, + [SMALL_STATE(193)] = 1122, + [SMALL_STATE(194)] = 1246, + [SMALL_STATE(195)] = 1370, + [SMALL_STATE(196)] = 1494, + [SMALL_STATE(197)] = 1614, + [SMALL_STATE(198)] = 1742, + [SMALL_STATE(199)] = 1868, + [SMALL_STATE(200)] = 1992, + [SMALL_STATE(201)] = 2116, + [SMALL_STATE(202)] = 2240, + [SMALL_STATE(203)] = 2366, + [SMALL_STATE(204)] = 2492, + [SMALL_STATE(205)] = 2616, + [SMALL_STATE(206)] = 2742, + [SMALL_STATE(207)] = 2866, + [SMALL_STATE(208)] = 2990, + [SMALL_STATE(209)] = 3116, + [SMALL_STATE(210)] = 3240, + [SMALL_STATE(211)] = 3364, + [SMALL_STATE(212)] = 3488, + [SMALL_STATE(213)] = 3608, + [SMALL_STATE(214)] = 3728, + [SMALL_STATE(215)] = 3854, + [SMALL_STATE(216)] = 3978, + [SMALL_STATE(217)] = 4106, + [SMALL_STATE(218)] = 4213, + [SMALL_STATE(219)] = 4320, + [SMALL_STATE(220)] = 4436, + [SMALL_STATE(221)] = 4552, + [SMALL_STATE(222)] = 4668, + [SMALL_STATE(223)] = 4784, + [SMALL_STATE(224)] = 4900, + [SMALL_STATE(225)] = 5016, + [SMALL_STATE(226)] = 5132, + [SMALL_STATE(227)] = 5248, + [SMALL_STATE(228)] = 5364, + [SMALL_STATE(229)] = 5480, + [SMALL_STATE(230)] = 5593, + [SMALL_STATE(231)] = 5706, + [SMALL_STATE(232)] = 5819, + [SMALL_STATE(233)] = 5934, + [SMALL_STATE(234)] = 6047, + [SMALL_STATE(235)] = 6160, + [SMALL_STATE(236)] = 6273, + [SMALL_STATE(237)] = 6388, + [SMALL_STATE(238)] = 6501, + [SMALL_STATE(239)] = 6614, + [SMALL_STATE(240)] = 6729, + [SMALL_STATE(241)] = 6842, + [SMALL_STATE(242)] = 6955, + [SMALL_STATE(243)] = 7070, + [SMALL_STATE(244)] = 7183, + [SMALL_STATE(245)] = 7296, + [SMALL_STATE(246)] = 7409, + [SMALL_STATE(247)] = 7524, + [SMALL_STATE(248)] = 7639, + [SMALL_STATE(249)] = 7752, + [SMALL_STATE(250)] = 7857, + [SMALL_STATE(251)] = 7972, + [SMALL_STATE(252)] = 8085, + [SMALL_STATE(253)] = 8202, + [SMALL_STATE(254)] = 8315, + [SMALL_STATE(255)] = 8430, + [SMALL_STATE(256)] = 8543, + [SMALL_STATE(257)] = 8654, + [SMALL_STATE(258)] = 8767, + [SMALL_STATE(259)] = 8880, + [SMALL_STATE(260)] = 8993, + [SMALL_STATE(261)] = 9106, + [SMALL_STATE(262)] = 9221, + [SMALL_STATE(263)] = 9334, + [SMALL_STATE(264)] = 9447, + [SMALL_STATE(265)] = 9560, + [SMALL_STATE(266)] = 9673, + [SMALL_STATE(267)] = 9778, + [SMALL_STATE(268)] = 9890, + [SMALL_STATE(269)] = 10004, + [SMALL_STATE(270)] = 10116, + [SMALL_STATE(271)] = 10230, + [SMALL_STATE(272)] = 10342, + [SMALL_STATE(273)] = 10458, + [SMALL_STATE(274)] = 10574, + [SMALL_STATE(275)] = 10686, + [SMALL_STATE(276)] = 10798, + [SMALL_STATE(277)] = 10910, + [SMALL_STATE(278)] = 11022, + [SMALL_STATE(279)] = 11134, + [SMALL_STATE(280)] = 11246, + [SMALL_STATE(281)] = 11360, + [SMALL_STATE(282)] = 11472, + [SMALL_STATE(283)] = 11588, + [SMALL_STATE(284)] = 11700, + [SMALL_STATE(285)] = 11812, + [SMALL_STATE(286)] = 11924, + [SMALL_STATE(287)] = 12036, + [SMALL_STATE(288)] = 12150, + [SMALL_STATE(289)] = 12262, + [SMALL_STATE(290)] = 12378, + [SMALL_STATE(291)] = 12490, + [SMALL_STATE(292)] = 12606, + [SMALL_STATE(293)] = 12718, + [SMALL_STATE(294)] = 12830, + [SMALL_STATE(295)] = 12942, + [SMALL_STATE(296)] = 13054, + [SMALL_STATE(297)] = 13166, + [SMALL_STATE(298)] = 13278, + [SMALL_STATE(299)] = 13392, + [SMALL_STATE(300)] = 13504, + [SMALL_STATE(301)] = 13620, + [SMALL_STATE(302)] = 13732, + [SMALL_STATE(303)] = 13844, + [SMALL_STATE(304)] = 13956, + [SMALL_STATE(305)] = 14068, + [SMALL_STATE(306)] = 14180, + [SMALL_STATE(307)] = 14294, + [SMALL_STATE(308)] = 14406, + [SMALL_STATE(309)] = 14518, + [SMALL_STATE(310)] = 14630, + [SMALL_STATE(311)] = 14742, + [SMALL_STATE(312)] = 14854, + [SMALL_STATE(313)] = 14968, + [SMALL_STATE(314)] = 15080, + [SMALL_STATE(315)] = 15192, + [SMALL_STATE(316)] = 15304, + [SMALL_STATE(317)] = 15416, + [SMALL_STATE(318)] = 15528, + [SMALL_STATE(319)] = 15642, + [SMALL_STATE(320)] = 15754, + [SMALL_STATE(321)] = 15866, + [SMALL_STATE(322)] = 15963, + [SMALL_STATE(323)] = 16072, + [SMALL_STATE(324)] = 16181, + [SMALL_STATE(325)] = 16290, + [SMALL_STATE(326)] = 16399, + [SMALL_STATE(327)] = 16508, + [SMALL_STATE(328)] = 16617, + [SMALL_STATE(329)] = 16726, + [SMALL_STATE(330)] = 16835, + [SMALL_STATE(331)] = 16944, + [SMALL_STATE(332)] = 17053, + [SMALL_STATE(333)] = 17162, + [SMALL_STATE(334)] = 17267, + [SMALL_STATE(335)] = 17376, + [SMALL_STATE(336)] = 17485, + [SMALL_STATE(337)] = 17594, + [SMALL_STATE(338)] = 17699, + [SMALL_STATE(339)] = 17808, + [SMALL_STATE(340)] = 17917, + [SMALL_STATE(341)] = 18026, + [SMALL_STATE(342)] = 18135, + [SMALL_STATE(343)] = 18244, + [SMALL_STATE(344)] = 18352, + [SMALL_STATE(345)] = 18460, + [SMALL_STATE(346)] = 18568, + [SMALL_STATE(347)] = 18676, + [SMALL_STATE(348)] = 18782, + [SMALL_STATE(349)] = 18890, + [SMALL_STATE(350)] = 18998, + [SMALL_STATE(351)] = 19106, + [SMALL_STATE(352)] = 19214, + [SMALL_STATE(353)] = 19322, + [SMALL_STATE(354)] = 19430, + [SMALL_STATE(355)] = 19536, + [SMALL_STATE(356)] = 19644, + [SMALL_STATE(357)] = 19752, + [SMALL_STATE(358)] = 19860, + [SMALL_STATE(359)] = 19968, + [SMALL_STATE(360)] = 20076, + [SMALL_STATE(361)] = 20182, + [SMALL_STATE(362)] = 20290, + [SMALL_STATE(363)] = 20398, + [SMALL_STATE(364)] = 20506, + [SMALL_STATE(365)] = 20614, + [SMALL_STATE(366)] = 20722, + [SMALL_STATE(367)] = 20829, + [SMALL_STATE(368)] = 20936, + [SMALL_STATE(369)] = 21043, + [SMALL_STATE(370)] = 21148, + [SMALL_STATE(371)] = 21253, + [SMALL_STATE(372)] = 21360, + [SMALL_STATE(373)] = 21467, + [SMALL_STATE(374)] = 21574, + [SMALL_STATE(375)] = 21681, + [SMALL_STATE(376)] = 21788, + [SMALL_STATE(377)] = 21893, + [SMALL_STATE(378)] = 22000, + [SMALL_STATE(379)] = 22107, + [SMALL_STATE(380)] = 22214, + [SMALL_STATE(381)] = 22321, + [SMALL_STATE(382)] = 22428, + [SMALL_STATE(383)] = 22535, + [SMALL_STATE(384)] = 22630, + [SMALL_STATE(385)] = 22737, + [SMALL_STATE(386)] = 22844, + [SMALL_STATE(387)] = 22951, + [SMALL_STATE(388)] = 23058, + [SMALL_STATE(389)] = 23165, + [SMALL_STATE(390)] = 23272, + [SMALL_STATE(391)] = 23379, + [SMALL_STATE(392)] = 23486, + [SMALL_STATE(393)] = 23593, + [SMALL_STATE(394)] = 23698, + [SMALL_STATE(395)] = 23805, + [SMALL_STATE(396)] = 23910, + [SMALL_STATE(397)] = 24017, + [SMALL_STATE(398)] = 24124, + [SMALL_STATE(399)] = 24231, + [SMALL_STATE(400)] = 24338, + [SMALL_STATE(401)] = 24445, + [SMALL_STATE(402)] = 24552, + [SMALL_STATE(403)] = 24657, + [SMALL_STATE(404)] = 24752, + [SMALL_STATE(405)] = 24854, + [SMALL_STATE(406)] = 24948, + [SMALL_STATE(407)] = 25050, + [SMALL_STATE(408)] = 25152, + [SMALL_STATE(409)] = 25254, + [SMALL_STATE(410)] = 25356, + [SMALL_STATE(411)] = 25458, + [SMALL_STATE(412)] = 25552, + [SMALL_STATE(413)] = 25646, + [SMALL_STATE(414)] = 25750, + [SMALL_STATE(415)] = 25852, + [SMALL_STATE(416)] = 25954, + [SMALL_STATE(417)] = 26050, + [SMALL_STATE(418)] = 26154, + [SMALL_STATE(419)] = 26258, + [SMALL_STATE(420)] = 26360, + [SMALL_STATE(421)] = 26462, + [SMALL_STATE(422)] = 26564, + [SMALL_STATE(423)] = 26666, + [SMALL_STATE(424)] = 26770, + [SMALL_STATE(425)] = 26872, + [SMALL_STATE(426)] = 26974, + [SMALL_STATE(427)] = 27076, + [SMALL_STATE(428)] = 27178, + [SMALL_STATE(429)] = 27272, + [SMALL_STATE(430)] = 27374, + [SMALL_STATE(431)] = 27478, + [SMALL_STATE(432)] = 27580, + [SMALL_STATE(433)] = 27682, + [SMALL_STATE(434)] = 27784, + [SMALL_STATE(435)] = 27886, + [SMALL_STATE(436)] = 27988, + [SMALL_STATE(437)] = 28092, + [SMALL_STATE(438)] = 28194, + [SMALL_STATE(439)] = 28296, + [SMALL_STATE(440)] = 28398, + [SMALL_STATE(441)] = 28500, + [SMALL_STATE(442)] = 28604, + [SMALL_STATE(443)] = 28708, + [SMALL_STATE(444)] = 28810, + [SMALL_STATE(445)] = 28914, + [SMALL_STATE(446)] = 29018, + [SMALL_STATE(447)] = 29122, + [SMALL_STATE(448)] = 29226, + [SMALL_STATE(449)] = 29330, + [SMALL_STATE(450)] = 29434, + [SMALL_STATE(451)] = 29538, + [SMALL_STATE(452)] = 29642, + [SMALL_STATE(453)] = 29746, + [SMALL_STATE(454)] = 29850, + [SMALL_STATE(455)] = 29954, + [SMALL_STATE(456)] = 30056, + [SMALL_STATE(457)] = 30131, + [SMALL_STATE(458)] = 30232, + [SMALL_STATE(459)] = 30333, + [SMALL_STATE(460)] = 30434, + [SMALL_STATE(461)] = 30535, + [SMALL_STATE(462)] = 30636, + [SMALL_STATE(463)] = 30737, + [SMALL_STATE(464)] = 30812, + [SMALL_STATE(465)] = 30889, + [SMALL_STATE(466)] = 30990, + [SMALL_STATE(467)] = 31091, + [SMALL_STATE(468)] = 31192, + [SMALL_STATE(469)] = 31293, + [SMALL_STATE(470)] = 31368, + [SMALL_STATE(471)] = 31469, + [SMALL_STATE(472)] = 31570, + [SMALL_STATE(473)] = 31671, + [SMALL_STATE(474)] = 31772, + [SMALL_STATE(475)] = 31873, + [SMALL_STATE(476)] = 31971, + [SMALL_STATE(477)] = 32069, + [SMALL_STATE(478)] = 32167, + [SMALL_STATE(479)] = 32265, + [SMALL_STATE(480)] = 32363, + [SMALL_STATE(481)] = 32461, + [SMALL_STATE(482)] = 32559, + [SMALL_STATE(483)] = 32657, + [SMALL_STATE(484)] = 32755, + [SMALL_STATE(485)] = 32853, + [SMALL_STATE(486)] = 32951, + [SMALL_STATE(487)] = 33049, + [SMALL_STATE(488)] = 33147, + [SMALL_STATE(489)] = 33245, + [SMALL_STATE(490)] = 33343, + [SMALL_STATE(491)] = 33441, + [SMALL_STATE(492)] = 33539, + [SMALL_STATE(493)] = 33637, + [SMALL_STATE(494)] = 33735, + [SMALL_STATE(495)] = 33835, + [SMALL_STATE(496)] = 33933, + [SMALL_STATE(497)] = 34031, + [SMALL_STATE(498)] = 34129, + [SMALL_STATE(499)] = 34227, + [SMALL_STATE(500)] = 34299, + [SMALL_STATE(501)] = 34397, + [SMALL_STATE(502)] = 34495, + [SMALL_STATE(503)] = 34593, + [SMALL_STATE(504)] = 34691, + [SMALL_STATE(505)] = 34789, + [SMALL_STATE(506)] = 34861, + [SMALL_STATE(507)] = 34959, + [SMALL_STATE(508)] = 35057, + [SMALL_STATE(509)] = 35155, + [SMALL_STATE(510)] = 35253, + [SMALL_STATE(511)] = 35351, + [SMALL_STATE(512)] = 35449, + [SMALL_STATE(513)] = 35547, + [SMALL_STATE(514)] = 35645, + [SMALL_STATE(515)] = 35717, + [SMALL_STATE(516)] = 35789, + [SMALL_STATE(517)] = 35861, + [SMALL_STATE(518)] = 35933, + [SMALL_STATE(519)] = 36031, + [SMALL_STATE(520)] = 36129, + [SMALL_STATE(521)] = 36227, + [SMALL_STATE(522)] = 36325, + [SMALL_STATE(523)] = 36423, + [SMALL_STATE(524)] = 36521, + [SMALL_STATE(525)] = 36619, + [SMALL_STATE(526)] = 36717, + [SMALL_STATE(527)] = 36815, + [SMALL_STATE(528)] = 36913, + [SMALL_STATE(529)] = 37011, + [SMALL_STATE(530)] = 37109, + [SMALL_STATE(531)] = 37207, + [SMALL_STATE(532)] = 37305, + [SMALL_STATE(533)] = 37403, + [SMALL_STATE(534)] = 37501, + [SMALL_STATE(535)] = 37599, + [SMALL_STATE(536)] = 37699, + [SMALL_STATE(537)] = 37797, + [SMALL_STATE(538)] = 37895, + [SMALL_STATE(539)] = 37993, + [SMALL_STATE(540)] = 38091, + [SMALL_STATE(541)] = 38189, + [SMALL_STATE(542)] = 38287, + [SMALL_STATE(543)] = 38385, + [SMALL_STATE(544)] = 38483, + [SMALL_STATE(545)] = 38581, + [SMALL_STATE(546)] = 38679, + [SMALL_STATE(547)] = 38777, + [SMALL_STATE(548)] = 38849, + [SMALL_STATE(549)] = 38949, + [SMALL_STATE(550)] = 39047, + [SMALL_STATE(551)] = 39145, + [SMALL_STATE(552)] = 39243, + [SMALL_STATE(553)] = 39341, + [SMALL_STATE(554)] = 39439, + [SMALL_STATE(555)] = 39539, + [SMALL_STATE(556)] = 39637, + [SMALL_STATE(557)] = 39737, + [SMALL_STATE(558)] = 39835, + [SMALL_STATE(559)] = 39933, + [SMALL_STATE(560)] = 40031, + [SMALL_STATE(561)] = 40129, + [SMALL_STATE(562)] = 40227, + [SMALL_STATE(563)] = 40325, + [SMALL_STATE(564)] = 40423, + [SMALL_STATE(565)] = 40521, + [SMALL_STATE(566)] = 40619, + [SMALL_STATE(567)] = 40717, + [SMALL_STATE(568)] = 40817, + [SMALL_STATE(569)] = 40915, + [SMALL_STATE(570)] = 41013, + [SMALL_STATE(571)] = 41111, + [SMALL_STATE(572)] = 41209, + [SMALL_STATE(573)] = 41307, + [SMALL_STATE(574)] = 41405, + [SMALL_STATE(575)] = 41503, + [SMALL_STATE(576)] = 41601, + [SMALL_STATE(577)] = 41699, + [SMALL_STATE(578)] = 41797, + [SMALL_STATE(579)] = 41895, + [SMALL_STATE(580)] = 41993, + [SMALL_STATE(581)] = 42093, + [SMALL_STATE(582)] = 42191, + [SMALL_STATE(583)] = 42289, + [SMALL_STATE(584)] = 42387, + [SMALL_STATE(585)] = 42485, + [SMALL_STATE(586)] = 42583, + [SMALL_STATE(587)] = 42681, + [SMALL_STATE(588)] = 42779, + [SMALL_STATE(589)] = 42877, + [SMALL_STATE(590)] = 42975, + [SMALL_STATE(591)] = 43073, + [SMALL_STATE(592)] = 43171, + [SMALL_STATE(593)] = 43269, + [SMALL_STATE(594)] = 43367, + [SMALL_STATE(595)] = 43465, + [SMALL_STATE(596)] = 43537, + [SMALL_STATE(597)] = 43635, + [SMALL_STATE(598)] = 43733, + [SMALL_STATE(599)] = 43831, + [SMALL_STATE(600)] = 43929, + [SMALL_STATE(601)] = 44027, + [SMALL_STATE(602)] = 44125, + [SMALL_STATE(603)] = 44223, + [SMALL_STATE(604)] = 44321, + [SMALL_STATE(605)] = 44419, + [SMALL_STATE(606)] = 44492, + [SMALL_STATE(607)] = 44560, + [SMALL_STATE(608)] = 44626, + [SMALL_STATE(609)] = 44694, + [SMALL_STATE(610)] = 44762, + [SMALL_STATE(611)] = 44830, + [SMALL_STATE(612)] = 44898, + [SMALL_STATE(613)] = 44960, + [SMALL_STATE(614)] = 45022, + [SMALL_STATE(615)] = 45090, + [SMALL_STATE(616)] = 45158, + [SMALL_STATE(617)] = 45220, + [SMALL_STATE(618)] = 45282, + [SMALL_STATE(619)] = 45348, + [SMALL_STATE(620)] = 45416, + [SMALL_STATE(621)] = 45484, + [SMALL_STATE(622)] = 45550, + [SMALL_STATE(623)] = 45618, + [SMALL_STATE(624)] = 45675, + [SMALL_STATE(625)] = 45738, + [SMALL_STATE(626)] = 45795, + [SMALL_STATE(627)] = 45852, + [SMALL_STATE(628)] = 45917, + [SMALL_STATE(629)] = 45974, + [SMALL_STATE(630)] = 46031, + [SMALL_STATE(631)] = 46094, + [SMALL_STATE(632)] = 46157, + [SMALL_STATE(633)] = 46220, + [SMALL_STATE(634)] = 46277, + [SMALL_STATE(635)] = 46334, + [SMALL_STATE(636)] = 46397, + [SMALL_STATE(637)] = 46454, + [SMALL_STATE(638)] = 46517, + [SMALL_STATE(639)] = 46574, + [SMALL_STATE(640)] = 46631, + [SMALL_STATE(641)] = 46688, + [SMALL_STATE(642)] = 46745, + [SMALL_STATE(643)] = 46802, + [SMALL_STATE(644)] = 46859, + [SMALL_STATE(645)] = 46916, + [SMALL_STATE(646)] = 46979, + [SMALL_STATE(647)] = 47042, + [SMALL_STATE(648)] = 47099, + [SMALL_STATE(649)] = 47156, + [SMALL_STATE(650)] = 47217, + [SMALL_STATE(651)] = 47278, + [SMALL_STATE(652)] = 47339, + [SMALL_STATE(653)] = 47402, + [SMALL_STATE(654)] = 47465, + [SMALL_STATE(655)] = 47521, + [SMALL_STATE(656)] = 47577, + [SMALL_STATE(657)] = 47633, + [SMALL_STATE(658)] = 47689, + [SMALL_STATE(659)] = 47745, + [SMALL_STATE(660)] = 47801, + [SMALL_STATE(661)] = 47857, + [SMALL_STATE(662)] = 47913, + [SMALL_STATE(663)] = 47969, + [SMALL_STATE(664)] = 48025, + [SMALL_STATE(665)] = 48081, + [SMALL_STATE(666)] = 48137, + [SMALL_STATE(667)] = 48193, + [SMALL_STATE(668)] = 48249, + [SMALL_STATE(669)] = 48341, + [SMALL_STATE(670)] = 48397, + [SMALL_STATE(671)] = 48453, + [SMALL_STATE(672)] = 48509, + [SMALL_STATE(673)] = 48565, + [SMALL_STATE(674)] = 48657, + [SMALL_STATE(675)] = 48713, + [SMALL_STATE(676)] = 48769, + [SMALL_STATE(677)] = 48825, + [SMALL_STATE(678)] = 48881, + [SMALL_STATE(679)] = 48937, + [SMALL_STATE(680)] = 48993, + [SMALL_STATE(681)] = 49049, + [SMALL_STATE(682)] = 49105, + [SMALL_STATE(683)] = 49161, + [SMALL_STATE(684)] = 49217, + [SMALL_STATE(685)] = 49273, + [SMALL_STATE(686)] = 49329, + [SMALL_STATE(687)] = 49388, + [SMALL_STATE(688)] = 49447, + [SMALL_STATE(689)] = 49506, + [SMALL_STATE(690)] = 49561, + [SMALL_STATE(691)] = 49616, + [SMALL_STATE(692)] = 49675, + [SMALL_STATE(693)] = 49734, + [SMALL_STATE(694)] = 49793, + [SMALL_STATE(695)] = 49852, + [SMALL_STATE(696)] = 49911, + [SMALL_STATE(697)] = 49966, + [SMALL_STATE(698)] = 50021, + [SMALL_STATE(699)] = 50080, + [SMALL_STATE(700)] = 50139, + [SMALL_STATE(701)] = 50194, + [SMALL_STATE(702)] = 50253, + [SMALL_STATE(703)] = 50312, + [SMALL_STATE(704)] = 50371, + [SMALL_STATE(705)] = 50430, + [SMALL_STATE(706)] = 50489, + [SMALL_STATE(707)] = 50544, + [SMALL_STATE(708)] = 50603, + [SMALL_STATE(709)] = 50657, + [SMALL_STATE(710)] = 50749, + [SMALL_STATE(711)] = 50803, + [SMALL_STATE(712)] = 50895, + [SMALL_STATE(713)] = 50949, + [SMALL_STATE(714)] = 51003, + [SMALL_STATE(715)] = 51056, + [SMALL_STATE(716)] = 51109, + [SMALL_STATE(717)] = 51162, + [SMALL_STATE(718)] = 51215, + [SMALL_STATE(719)] = 51268, + [SMALL_STATE(720)] = 51321, + [SMALL_STATE(721)] = 51374, + [SMALL_STATE(722)] = 51427, + [SMALL_STATE(723)] = 51480, + [SMALL_STATE(724)] = 51533, + [SMALL_STATE(725)] = 51586, + [SMALL_STATE(726)] = 51639, + [SMALL_STATE(727)] = 51692, + [SMALL_STATE(728)] = 51745, + [SMALL_STATE(729)] = 51798, + [SMALL_STATE(730)] = 51851, + [SMALL_STATE(731)] = 51904, + [SMALL_STATE(732)] = 51957, + [SMALL_STATE(733)] = 52010, + [SMALL_STATE(734)] = 52063, + [SMALL_STATE(735)] = 52116, + [SMALL_STATE(736)] = 52169, + [SMALL_STATE(737)] = 52222, + [SMALL_STATE(738)] = 52275, + [SMALL_STATE(739)] = 52328, + [SMALL_STATE(740)] = 52381, + [SMALL_STATE(741)] = 52434, + [SMALL_STATE(742)] = 52487, + [SMALL_STATE(743)] = 52540, + [SMALL_STATE(744)] = 52593, + [SMALL_STATE(745)] = 52646, + [SMALL_STATE(746)] = 52699, + [SMALL_STATE(747)] = 52752, + [SMALL_STATE(748)] = 52805, + [SMALL_STATE(749)] = 52858, + [SMALL_STATE(750)] = 52911, + [SMALL_STATE(751)] = 53000, + [SMALL_STATE(752)] = 53089, + [SMALL_STATE(753)] = 53142, + [SMALL_STATE(754)] = 53195, + [SMALL_STATE(755)] = 53248, + [SMALL_STATE(756)] = 53301, + [SMALL_STATE(757)] = 53354, + [SMALL_STATE(758)] = 53407, + [SMALL_STATE(759)] = 53460, + [SMALL_STATE(760)] = 53513, + [SMALL_STATE(761)] = 53566, + [SMALL_STATE(762)] = 53619, + [SMALL_STATE(763)] = 53672, + [SMALL_STATE(764)] = 53725, + [SMALL_STATE(765)] = 53778, + [SMALL_STATE(766)] = 53831, + [SMALL_STATE(767)] = 53884, + [SMALL_STATE(768)] = 53937, + [SMALL_STATE(769)] = 54026, + [SMALL_STATE(770)] = 54079, + [SMALL_STATE(771)] = 54132, + [SMALL_STATE(772)] = 54221, + [SMALL_STATE(773)] = 54274, + [SMALL_STATE(774)] = 54327, + [SMALL_STATE(775)] = 54380, + [SMALL_STATE(776)] = 54433, + [SMALL_STATE(777)] = 54486, + [SMALL_STATE(778)] = 54575, + [SMALL_STATE(779)] = 54628, + [SMALL_STATE(780)] = 54681, + [SMALL_STATE(781)] = 54734, + [SMALL_STATE(782)] = 54787, + [SMALL_STATE(783)] = 54840, + [SMALL_STATE(784)] = 54893, + [SMALL_STATE(785)] = 54946, + [SMALL_STATE(786)] = 54999, + [SMALL_STATE(787)] = 55052, + [SMALL_STATE(788)] = 55105, + [SMALL_STATE(789)] = 55194, + [SMALL_STATE(790)] = 55283, + [SMALL_STATE(791)] = 55336, + [SMALL_STATE(792)] = 55389, + [SMALL_STATE(793)] = 55442, + [SMALL_STATE(794)] = 55495, + [SMALL_STATE(795)] = 55548, + [SMALL_STATE(796)] = 55601, + [SMALL_STATE(797)] = 55654, + [SMALL_STATE(798)] = 55707, + [SMALL_STATE(799)] = 55760, + [SMALL_STATE(800)] = 55813, + [SMALL_STATE(801)] = 55866, + [SMALL_STATE(802)] = 55919, + [SMALL_STATE(803)] = 55972, + [SMALL_STATE(804)] = 56025, + [SMALL_STATE(805)] = 56078, + [SMALL_STATE(806)] = 56131, + [SMALL_STATE(807)] = 56184, + [SMALL_STATE(808)] = 56237, + [SMALL_STATE(809)] = 56290, + [SMALL_STATE(810)] = 56343, + [SMALL_STATE(811)] = 56396, + [SMALL_STATE(812)] = 56449, + [SMALL_STATE(813)] = 56502, + [SMALL_STATE(814)] = 56555, + [SMALL_STATE(815)] = 56608, + [SMALL_STATE(816)] = 56697, + [SMALL_STATE(817)] = 56750, + [SMALL_STATE(818)] = 56839, + [SMALL_STATE(819)] = 56892, + [SMALL_STATE(820)] = 56945, + [SMALL_STATE(821)] = 56998, + [SMALL_STATE(822)] = 57087, + [SMALL_STATE(823)] = 57140, + [SMALL_STATE(824)] = 57193, + [SMALL_STATE(825)] = 57246, + [SMALL_STATE(826)] = 57299, + [SMALL_STATE(827)] = 57352, + [SMALL_STATE(828)] = 57405, + [SMALL_STATE(829)] = 57458, + [SMALL_STATE(830)] = 57511, + [SMALL_STATE(831)] = 57600, + [SMALL_STATE(832)] = 57689, + [SMALL_STATE(833)] = 57778, + [SMALL_STATE(834)] = 57867, + [SMALL_STATE(835)] = 57920, + [SMALL_STATE(836)] = 58009, + [SMALL_STATE(837)] = 58098, + [SMALL_STATE(838)] = 58151, + [SMALL_STATE(839)] = 58237, + [SMALL_STATE(840)] = 58323, + [SMALL_STATE(841)] = 58409, + [SMALL_STATE(842)] = 58495, + [SMALL_STATE(843)] = 58581, + [SMALL_STATE(844)] = 58667, + [SMALL_STATE(845)] = 58750, + [SMALL_STATE(846)] = 58833, + [SMALL_STATE(847)] = 58911, + [SMALL_STATE(848)] = 58989, + [SMALL_STATE(849)] = 59067, + [SMALL_STATE(850)] = 59145, + [SMALL_STATE(851)] = 59223, + [SMALL_STATE(852)] = 59301, + [SMALL_STATE(853)] = 59379, + [SMALL_STATE(854)] = 59465, + [SMALL_STATE(855)] = 59543, + [SMALL_STATE(856)] = 59622, + [SMALL_STATE(857)] = 59697, + [SMALL_STATE(858)] = 59772, + [SMALL_STATE(859)] = 59847, + [SMALL_STATE(860)] = 59922, + [SMALL_STATE(861)] = 60001, + [SMALL_STATE(862)] = 60076, + [SMALL_STATE(863)] = 60151, + [SMALL_STATE(864)] = 60226, + [SMALL_STATE(865)] = 60301, + [SMALL_STATE(866)] = 60376, + [SMALL_STATE(867)] = 60455, + [SMALL_STATE(868)] = 60530, + [SMALL_STATE(869)] = 60605, + [SMALL_STATE(870)] = 60680, + [SMALL_STATE(871)] = 60755, + [SMALL_STATE(872)] = 60830, + [SMALL_STATE(873)] = 60905, + [SMALL_STATE(874)] = 60984, + [SMALL_STATE(875)] = 61059, + [SMALL_STATE(876)] = 61138, + [SMALL_STATE(877)] = 61213, + [SMALL_STATE(878)] = 61288, + [SMALL_STATE(879)] = 61363, + [SMALL_STATE(880)] = 61442, + [SMALL_STATE(881)] = 61527, + [SMALL_STATE(882)] = 61602, + [SMALL_STATE(883)] = 61677, + [SMALL_STATE(884)] = 61756, + [SMALL_STATE(885)] = 61831, + [SMALL_STATE(886)] = 61906, + [SMALL_STATE(887)] = 61985, + [SMALL_STATE(888)] = 62060, + [SMALL_STATE(889)] = 62145, + [SMALL_STATE(890)] = 62220, + [SMALL_STATE(891)] = 62295, + [SMALL_STATE(892)] = 62370, + [SMALL_STATE(893)] = 62445, + [SMALL_STATE(894)] = 62520, + [SMALL_STATE(895)] = 62599, + [SMALL_STATE(896)] = 62674, + [SMALL_STATE(897)] = 62749, + [SMALL_STATE(898)] = 62828, + [SMALL_STATE(899)] = 62903, + [SMALL_STATE(900)] = 62978, + [SMALL_STATE(901)] = 63053, + [SMALL_STATE(902)] = 63132, + [SMALL_STATE(903)] = 63207, + [SMALL_STATE(904)] = 63282, + [SMALL_STATE(905)] = 63357, + [SMALL_STATE(906)] = 63432, + [SMALL_STATE(907)] = 63511, + [SMALL_STATE(908)] = 63590, + [SMALL_STATE(909)] = 63665, + [SMALL_STATE(910)] = 63740, + [SMALL_STATE(911)] = 63819, + [SMALL_STATE(912)] = 63894, + [SMALL_STATE(913)] = 63969, + [SMALL_STATE(914)] = 64044, + [SMALL_STATE(915)] = 64119, + [SMALL_STATE(916)] = 64194, + [SMALL_STATE(917)] = 64269, + [SMALL_STATE(918)] = 64344, + [SMALL_STATE(919)] = 64419, + [SMALL_STATE(920)] = 64504, + [SMALL_STATE(921)] = 64579, + [SMALL_STATE(922)] = 64658, + [SMALL_STATE(923)] = 64733, + [SMALL_STATE(924)] = 64808, + [SMALL_STATE(925)] = 64883, + [SMALL_STATE(926)] = 64958, + [SMALL_STATE(927)] = 65033, + [SMALL_STATE(928)] = 65108, + [SMALL_STATE(929)] = 65183, + [SMALL_STATE(930)] = 65262, + [SMALL_STATE(931)] = 65337, + [SMALL_STATE(932)] = 65412, + [SMALL_STATE(933)] = 65487, + [SMALL_STATE(934)] = 65562, + [SMALL_STATE(935)] = 65637, + [SMALL_STATE(936)] = 65712, + [SMALL_STATE(937)] = 65787, + [SMALL_STATE(938)] = 65862, + [SMALL_STATE(939)] = 65937, + [SMALL_STATE(940)] = 66012, + [SMALL_STATE(941)] = 66087, + [SMALL_STATE(942)] = 66166, + [SMALL_STATE(943)] = 66245, + [SMALL_STATE(944)] = 66324, + [SMALL_STATE(945)] = 66399, + [SMALL_STATE(946)] = 66474, + [SMALL_STATE(947)] = 66549, + [SMALL_STATE(948)] = 66628, + [SMALL_STATE(949)] = 66703, + [SMALL_STATE(950)] = 66778, + [SMALL_STATE(951)] = 66830, + [SMALL_STATE(952)] = 66912, + [SMALL_STATE(953)] = 66996, + [SMALL_STATE(954)] = 67048, + [SMALL_STATE(955)] = 67100, + [SMALL_STATE(956)] = 67184, + [SMALL_STATE(957)] = 67268, + [SMALL_STATE(958)] = 67325, + [SMALL_STATE(959)] = 67388, + [SMALL_STATE(960)] = 67449, + [SMALL_STATE(961)] = 67506, + [SMALL_STATE(962)] = 67557, + [SMALL_STATE(963)] = 67608, + [SMALL_STATE(964)] = 67659, + [SMALL_STATE(965)] = 67724, + [SMALL_STATE(966)] = 67781, + [SMALL_STATE(967)] = 67850, + [SMALL_STATE(968)] = 67901, + [SMALL_STATE(969)] = 67972, + [SMALL_STATE(970)] = 68023, + [SMALL_STATE(971)] = 68074, + [SMALL_STATE(972)] = 68125, + [SMALL_STATE(973)] = 68206, + [SMALL_STATE(974)] = 68257, + [SMALL_STATE(975)] = 68308, + [SMALL_STATE(976)] = 68375, + [SMALL_STATE(977)] = 68432, + [SMALL_STATE(978)] = 68482, + [SMALL_STATE(979)] = 68528, + [SMALL_STATE(980)] = 68574, + [SMALL_STATE(981)] = 68620, + [SMALL_STATE(982)] = 68666, + [SMALL_STATE(983)] = 68712, + [SMALL_STATE(984)] = 68758, + [SMALL_STATE(985)] = 68838, + [SMALL_STATE(986)] = 68888, + [SMALL_STATE(987)] = 68938, + [SMALL_STATE(988)] = 68988, + [SMALL_STATE(989)] = 69068, + [SMALL_STATE(990)] = 69118, + [SMALL_STATE(991)] = 69166, + [SMALL_STATE(992)] = 69216, + [SMALL_STATE(993)] = 69272, + [SMALL_STATE(994)] = 69328, + [SMALL_STATE(995)] = 69378, + [SMALL_STATE(996)] = 69434, + [SMALL_STATE(997)] = 69496, + [SMALL_STATE(998)] = 69566, + [SMALL_STATE(999)] = 69622, + [SMALL_STATE(1000)] = 69682, + [SMALL_STATE(1001)] = 69750, + [SMALL_STATE(1002)] = 69816, + [SMALL_STATE(1003)] = 69880, + [SMALL_STATE(1004)] = 69930, + [SMALL_STATE(1005)] = 69982, + [SMALL_STATE(1006)] = 70034, + [SMALL_STATE(1007)] = 70090, + [SMALL_STATE(1008)] = 70146, + [SMALL_STATE(1009)] = 70192, + [SMALL_STATE(1010)] = 70240, + [SMALL_STATE(1011)] = 70286, + [SMALL_STATE(1012)] = 70342, + [SMALL_STATE(1013)] = 70404, + [SMALL_STATE(1014)] = 70474, + [SMALL_STATE(1015)] = 70530, + [SMALL_STATE(1016)] = 70590, + [SMALL_STATE(1017)] = 70658, + [SMALL_STATE(1018)] = 70724, + [SMALL_STATE(1019)] = 70788, + [SMALL_STATE(1020)] = 70844, + [SMALL_STATE(1021)] = 70900, + [SMALL_STATE(1022)] = 70980, + [SMALL_STATE(1023)] = 71028, + [SMALL_STATE(1024)] = 71078, + [SMALL_STATE(1025)] = 71124, + [SMALL_STATE(1026)] = 71180, + [SMALL_STATE(1027)] = 71242, + [SMALL_STATE(1028)] = 71312, + [SMALL_STATE(1029)] = 71368, + [SMALL_STATE(1030)] = 71428, + [SMALL_STATE(1031)] = 71496, + [SMALL_STATE(1032)] = 71562, + [SMALL_STATE(1033)] = 71626, + [SMALL_STATE(1034)] = 71671, + [SMALL_STATE(1035)] = 71716, + [SMALL_STATE(1036)] = 71761, + [SMALL_STATE(1037)] = 71806, + [SMALL_STATE(1038)] = 71851, + [SMALL_STATE(1039)] = 71906, + [SMALL_STATE(1040)] = 71967, + [SMALL_STATE(1041)] = 72016, + [SMALL_STATE(1042)] = 72061, + [SMALL_STATE(1043)] = 72116, + [SMALL_STATE(1044)] = 72161, + [SMALL_STATE(1045)] = 72210, + [SMALL_STATE(1046)] = 72261, + [SMALL_STATE(1047)] = 72312, + [SMALL_STATE(1048)] = 72381, + [SMALL_STATE(1049)] = 72436, + [SMALL_STATE(1050)] = 72481, + [SMALL_STATE(1051)] = 72526, + [SMALL_STATE(1052)] = 72571, + [SMALL_STATE(1053)] = 72616, + [SMALL_STATE(1054)] = 72667, + [SMALL_STATE(1055)] = 72712, + [SMALL_STATE(1056)] = 72757, + [SMALL_STATE(1057)] = 72802, + [SMALL_STATE(1058)] = 72853, + [SMALL_STATE(1059)] = 72904, + [SMALL_STATE(1060)] = 72959, + [SMALL_STATE(1061)] = 73020, + [SMALL_STATE(1062)] = 73089, + [SMALL_STATE(1063)] = 73144, + [SMALL_STATE(1064)] = 73189, + [SMALL_STATE(1065)] = 73234, + [SMALL_STATE(1066)] = 73293, + [SMALL_STATE(1067)] = 73348, + [SMALL_STATE(1068)] = 73399, + [SMALL_STATE(1069)] = 73444, + [SMALL_STATE(1070)] = 73489, + [SMALL_STATE(1071)] = 73534, + [SMALL_STATE(1072)] = 73579, + [SMALL_STATE(1073)] = 73640, + [SMALL_STATE(1074)] = 73689, + [SMALL_STATE(1075)] = 73738, + [SMALL_STATE(1076)] = 73807, + [SMALL_STATE(1077)] = 73852, + [SMALL_STATE(1078)] = 73907, + [SMALL_STATE(1079)] = 73956, + [SMALL_STATE(1080)] = 74015, + [SMALL_STATE(1081)] = 74064, + [SMALL_STATE(1082)] = 74131, + [SMALL_STATE(1083)] = 74176, + [SMALL_STATE(1084)] = 74241, + [SMALL_STATE(1085)] = 74286, + [SMALL_STATE(1086)] = 74331, + [SMALL_STATE(1087)] = 74378, + [SMALL_STATE(1088)] = 74425, + [SMALL_STATE(1089)] = 74472, + [SMALL_STATE(1090)] = 74521, + [SMALL_STATE(1091)] = 74566, + [SMALL_STATE(1092)] = 74611, + [SMALL_STATE(1093)] = 74656, + [SMALL_STATE(1094)] = 74701, + [SMALL_STATE(1095)] = 74756, + [SMALL_STATE(1096)] = 74801, + [SMALL_STATE(1097)] = 74868, + [SMALL_STATE(1098)] = 74923, + [SMALL_STATE(1099)] = 74972, + [SMALL_STATE(1100)] = 75017, + [SMALL_STATE(1101)] = 75064, + [SMALL_STATE(1102)] = 75111, + [SMALL_STATE(1103)] = 75158, + [SMALL_STATE(1104)] = 75203, + [SMALL_STATE(1105)] = 75252, + [SMALL_STATE(1106)] = 75307, + [SMALL_STATE(1107)] = 75356, + [SMALL_STATE(1108)] = 75401, + [SMALL_STATE(1109)] = 75448, + [SMALL_STATE(1110)] = 75495, + [SMALL_STATE(1111)] = 75542, + [SMALL_STATE(1112)] = 75607, + [SMALL_STATE(1113)] = 75652, + [SMALL_STATE(1114)] = 75715, + [SMALL_STATE(1115)] = 75770, + [SMALL_STATE(1116)] = 75829, + [SMALL_STATE(1117)] = 75884, + [SMALL_STATE(1118)] = 75937, + [SMALL_STATE(1119)] = 76004, + [SMALL_STATE(1120)] = 76055, + [SMALL_STATE(1121)] = 76106, + [SMALL_STATE(1122)] = 76157, + [SMALL_STATE(1123)] = 76202, + [SMALL_STATE(1124)] = 76247, + [SMALL_STATE(1125)] = 76312, + [SMALL_STATE(1126)] = 76375, + [SMALL_STATE(1127)] = 76424, + [SMALL_STATE(1128)] = 76473, + [SMALL_STATE(1129)] = 76518, + [SMALL_STATE(1130)] = 76563, + [SMALL_STATE(1131)] = 76608, + [SMALL_STATE(1132)] = 76653, + [SMALL_STATE(1133)] = 76716, + [SMALL_STATE(1134)] = 76760, + [SMALL_STATE(1135)] = 76808, + [SMALL_STATE(1136)] = 76856, + [SMALL_STATE(1137)] = 76900, + [SMALL_STATE(1138)] = 76944, + [SMALL_STATE(1139)] = 76992, + [SMALL_STATE(1140)] = 77040, + [SMALL_STATE(1141)] = 77088, + [SMALL_STATE(1142)] = 77136, + [SMALL_STATE(1143)] = 77180, + [SMALL_STATE(1144)] = 77224, + [SMALL_STATE(1145)] = 77268, + [SMALL_STATE(1146)] = 77312, + [SMALL_STATE(1147)] = 77356, + [SMALL_STATE(1148)] = 77400, + [SMALL_STATE(1149)] = 77444, + [SMALL_STATE(1150)] = 77488, + [SMALL_STATE(1151)] = 77536, + [SMALL_STATE(1152)] = 77582, + [SMALL_STATE(1153)] = 77628, + [SMALL_STATE(1154)] = 77674, + [SMALL_STATE(1155)] = 77722, + [SMALL_STATE(1156)] = 77766, + [SMALL_STATE(1157)] = 77810, + [SMALL_STATE(1158)] = 77854, + [SMALL_STATE(1159)] = 77898, + [SMALL_STATE(1160)] = 77946, + [SMALL_STATE(1161)] = 77990, + [SMALL_STATE(1162)] = 78036, + [SMALL_STATE(1163)] = 78082, + [SMALL_STATE(1164)] = 78128, + [SMALL_STATE(1165)] = 78172, + [SMALL_STATE(1166)] = 78216, + [SMALL_STATE(1167)] = 78260, + [SMALL_STATE(1168)] = 78304, + [SMALL_STATE(1169)] = 78348, + [SMALL_STATE(1170)] = 78392, + [SMALL_STATE(1171)] = 78442, + [SMALL_STATE(1172)] = 78486, + [SMALL_STATE(1173)] = 78530, + [SMALL_STATE(1174)] = 78574, + [SMALL_STATE(1175)] = 78618, + [SMALL_STATE(1176)] = 78662, + [SMALL_STATE(1177)] = 78710, + [SMALL_STATE(1178)] = 78754, + [SMALL_STATE(1179)] = 78798, + [SMALL_STATE(1180)] = 78842, + [SMALL_STATE(1181)] = 78886, + [SMALL_STATE(1182)] = 78930, + [SMALL_STATE(1183)] = 78974, + [SMALL_STATE(1184)] = 79018, + [SMALL_STATE(1185)] = 79062, + [SMALL_STATE(1186)] = 79106, + [SMALL_STATE(1187)] = 79150, + [SMALL_STATE(1188)] = 79194, + [SMALL_STATE(1189)] = 79238, + [SMALL_STATE(1190)] = 79282, + [SMALL_STATE(1191)] = 79326, + [SMALL_STATE(1192)] = 79372, + [SMALL_STATE(1193)] = 79420, + [SMALL_STATE(1194)] = 79466, + [SMALL_STATE(1195)] = 79510, + [SMALL_STATE(1196)] = 79554, + [SMALL_STATE(1197)] = 79600, + [SMALL_STATE(1198)] = 79648, + [SMALL_STATE(1199)] = 79696, + [SMALL_STATE(1200)] = 79742, + [SMALL_STATE(1201)] = 79786, + [SMALL_STATE(1202)] = 79832, + [SMALL_STATE(1203)] = 79878, + [SMALL_STATE(1204)] = 79924, + [SMALL_STATE(1205)] = 79968, + [SMALL_STATE(1206)] = 80012, + [SMALL_STATE(1207)] = 80058, + [SMALL_STATE(1208)] = 80102, + [SMALL_STATE(1209)] = 80146, + [SMALL_STATE(1210)] = 80190, + [SMALL_STATE(1211)] = 80234, + [SMALL_STATE(1212)] = 80282, + [SMALL_STATE(1213)] = 80326, + [SMALL_STATE(1214)] = 80370, + [SMALL_STATE(1215)] = 80414, + [SMALL_STATE(1216)] = 80462, + [SMALL_STATE(1217)] = 80510, + [SMALL_STATE(1218)] = 80572, + [SMALL_STATE(1219)] = 80620, + [SMALL_STATE(1220)] = 80670, + [SMALL_STATE(1221)] = 80714, + [SMALL_STATE(1222)] = 80768, + [SMALL_STATE(1223)] = 80812, + [SMALL_STATE(1224)] = 80856, + [SMALL_STATE(1225)] = 80910, + [SMALL_STATE(1226)] = 80954, + [SMALL_STATE(1227)] = 80998, + [SMALL_STATE(1228)] = 81042, + [SMALL_STATE(1229)] = 81086, + [SMALL_STATE(1230)] = 81130, + [SMALL_STATE(1231)] = 81174, + [SMALL_STATE(1232)] = 81218, + [SMALL_STATE(1233)] = 81262, + [SMALL_STATE(1234)] = 81306, + [SMALL_STATE(1235)] = 81350, + [SMALL_STATE(1236)] = 81394, + [SMALL_STATE(1237)] = 81438, + [SMALL_STATE(1238)] = 81482, + [SMALL_STATE(1239)] = 81526, + [SMALL_STATE(1240)] = 81570, + [SMALL_STATE(1241)] = 81614, + [SMALL_STATE(1242)] = 81658, + [SMALL_STATE(1243)] = 81702, + [SMALL_STATE(1244)] = 81746, + [SMALL_STATE(1245)] = 81790, + [SMALL_STATE(1246)] = 81834, + [SMALL_STATE(1247)] = 81882, + [SMALL_STATE(1248)] = 81926, + [SMALL_STATE(1249)] = 81970, + [SMALL_STATE(1250)] = 82014, + [SMALL_STATE(1251)] = 82058, + [SMALL_STATE(1252)] = 82102, + [SMALL_STATE(1253)] = 82150, + [SMALL_STATE(1254)] = 82196, + [SMALL_STATE(1255)] = 82240, + [SMALL_STATE(1256)] = 82284, + [SMALL_STATE(1257)] = 82328, + [SMALL_STATE(1258)] = 82372, + [SMALL_STATE(1259)] = 82416, + [SMALL_STATE(1260)] = 82460, + [SMALL_STATE(1261)] = 82510, + [SMALL_STATE(1262)] = 82554, + [SMALL_STATE(1263)] = 82598, + [SMALL_STATE(1264)] = 82642, + [SMALL_STATE(1265)] = 82686, + [SMALL_STATE(1266)] = 82730, + [SMALL_STATE(1267)] = 82774, + [SMALL_STATE(1268)] = 82818, + [SMALL_STATE(1269)] = 82872, + [SMALL_STATE(1270)] = 82916, + [SMALL_STATE(1271)] = 82960, + [SMALL_STATE(1272)] = 83020, + [SMALL_STATE(1273)] = 83064, + [SMALL_STATE(1274)] = 83108, + [SMALL_STATE(1275)] = 83152, + [SMALL_STATE(1276)] = 83196, + [SMALL_STATE(1277)] = 83240, + [SMALL_STATE(1278)] = 83284, + [SMALL_STATE(1279)] = 83328, + [SMALL_STATE(1280)] = 83396, + [SMALL_STATE(1281)] = 83450, + [SMALL_STATE(1282)] = 83494, + [SMALL_STATE(1283)] = 83552, + [SMALL_STATE(1284)] = 83618, + [SMALL_STATE(1285)] = 83682, + [SMALL_STATE(1286)] = 83732, + [SMALL_STATE(1287)] = 83775, + [SMALL_STATE(1288)] = 83818, + [SMALL_STATE(1289)] = 83861, + [SMALL_STATE(1290)] = 83904, + [SMALL_STATE(1291)] = 83949, + [SMALL_STATE(1292)] = 83992, + [SMALL_STATE(1293)] = 84035, + [SMALL_STATE(1294)] = 84082, + [SMALL_STATE(1295)] = 84125, + [SMALL_STATE(1296)] = 84168, + [SMALL_STATE(1297)] = 84215, + [SMALL_STATE(1298)] = 84258, + [SMALL_STATE(1299)] = 84301, + [SMALL_STATE(1300)] = 84344, + [SMALL_STATE(1301)] = 84387, + [SMALL_STATE(1302)] = 84430, + [SMALL_STATE(1303)] = 84473, + [SMALL_STATE(1304)] = 84516, + [SMALL_STATE(1305)] = 84559, + [SMALL_STATE(1306)] = 84610, + [SMALL_STATE(1307)] = 84657, + [SMALL_STATE(1308)] = 84700, + [SMALL_STATE(1309)] = 84743, + [SMALL_STATE(1310)] = 84786, + [SMALL_STATE(1311)] = 84829, + [SMALL_STATE(1312)] = 84876, + [SMALL_STATE(1313)] = 84919, + [SMALL_STATE(1314)] = 84962, + [SMALL_STATE(1315)] = 85007, + [SMALL_STATE(1316)] = 85058, + [SMALL_STATE(1317)] = 85101, + [SMALL_STATE(1318)] = 85144, + [SMALL_STATE(1319)] = 85187, + [SMALL_STATE(1320)] = 85234, + [SMALL_STATE(1321)] = 85277, + [SMALL_STATE(1322)] = 85324, + [SMALL_STATE(1323)] = 85369, + [SMALL_STATE(1324)] = 85412, + [SMALL_STATE(1325)] = 85455, + [SMALL_STATE(1326)] = 85498, + [SMALL_STATE(1327)] = 85541, + [SMALL_STATE(1328)] = 85586, + [SMALL_STATE(1329)] = 85629, + [SMALL_STATE(1330)] = 85674, + [SMALL_STATE(1331)] = 85717, + [SMALL_STATE(1332)] = 85760, + [SMALL_STATE(1333)] = 85803, + [SMALL_STATE(1334)] = 85846, + [SMALL_STATE(1335)] = 85889, + [SMALL_STATE(1336)] = 85932, + [SMALL_STATE(1337)] = 85975, + [SMALL_STATE(1338)] = 86018, + [SMALL_STATE(1339)] = 86061, + [SMALL_STATE(1340)] = 86104, + [SMALL_STATE(1341)] = 86147, + [SMALL_STATE(1342)] = 86192, + [SMALL_STATE(1343)] = 86235, + [SMALL_STATE(1344)] = 86278, + [SMALL_STATE(1345)] = 86321, + [SMALL_STATE(1346)] = 86364, + [SMALL_STATE(1347)] = 86409, + [SMALL_STATE(1348)] = 86452, + [SMALL_STATE(1349)] = 86495, + [SMALL_STATE(1350)] = 86538, + [SMALL_STATE(1351)] = 86581, + [SMALL_STATE(1352)] = 86626, + [SMALL_STATE(1353)] = 86669, + [SMALL_STATE(1354)] = 86712, + [SMALL_STATE(1355)] = 86755, + [SMALL_STATE(1356)] = 86800, + [SMALL_STATE(1357)] = 86843, + [SMALL_STATE(1358)] = 86886, + [SMALL_STATE(1359)] = 86931, + [SMALL_STATE(1360)] = 86976, + [SMALL_STATE(1361)] = 87019, + [SMALL_STATE(1362)] = 87062, + [SMALL_STATE(1363)] = 87105, + [SMALL_STATE(1364)] = 87148, + [SMALL_STATE(1365)] = 87195, + [SMALL_STATE(1366)] = 87242, + [SMALL_STATE(1367)] = 87287, + [SMALL_STATE(1368)] = 87330, + [SMALL_STATE(1369)] = 87375, + [SMALL_STATE(1370)] = 87418, + [SMALL_STATE(1371)] = 87461, + [SMALL_STATE(1372)] = 87504, + [SMALL_STATE(1373)] = 87549, + [SMALL_STATE(1374)] = 87594, + [SMALL_STATE(1375)] = 87637, + [SMALL_STATE(1376)] = 87680, + [SMALL_STATE(1377)] = 87723, + [SMALL_STATE(1378)] = 87766, + [SMALL_STATE(1379)] = 87809, + [SMALL_STATE(1380)] = 87852, + [SMALL_STATE(1381)] = 87895, + [SMALL_STATE(1382)] = 87942, + [SMALL_STATE(1383)] = 87985, + [SMALL_STATE(1384)] = 88028, + [SMALL_STATE(1385)] = 88071, + [SMALL_STATE(1386)] = 88114, + [SMALL_STATE(1387)] = 88157, + [SMALL_STATE(1388)] = 88200, + [SMALL_STATE(1389)] = 88243, + [SMALL_STATE(1390)] = 88288, + [SMALL_STATE(1391)] = 88331, + [SMALL_STATE(1392)] = 88374, + [SMALL_STATE(1393)] = 88417, + [SMALL_STATE(1394)] = 88464, + [SMALL_STATE(1395)] = 88511, + [SMALL_STATE(1396)] = 88554, + [SMALL_STATE(1397)] = 88599, + [SMALL_STATE(1398)] = 88642, + [SMALL_STATE(1399)] = 88685, + [SMALL_STATE(1400)] = 88728, + [SMALL_STATE(1401)] = 88771, + [SMALL_STATE(1402)] = 88818, + [SMALL_STATE(1403)] = 88861, + [SMALL_STATE(1404)] = 88904, + [SMALL_STATE(1405)] = 88947, + [SMALL_STATE(1406)] = 88990, + [SMALL_STATE(1407)] = 89035, + [SMALL_STATE(1408)] = 89078, + [SMALL_STATE(1409)] = 89121, + [SMALL_STATE(1410)] = 89164, + [SMALL_STATE(1411)] = 89207, + [SMALL_STATE(1412)] = 89250, + [SMALL_STATE(1413)] = 89292, + [SMALL_STATE(1414)] = 89336, + [SMALL_STATE(1415)] = 89380, + [SMALL_STATE(1416)] = 89422, + [SMALL_STATE(1417)] = 89464, + [SMALL_STATE(1418)] = 89506, + [SMALL_STATE(1419)] = 89548, + [SMALL_STATE(1420)] = 89590, + [SMALL_STATE(1421)] = 89632, + [SMALL_STATE(1422)] = 89674, + [SMALL_STATE(1423)] = 89716, + [SMALL_STATE(1424)] = 89758, + [SMALL_STATE(1425)] = 89800, + [SMALL_STATE(1426)] = 89842, + [SMALL_STATE(1427)] = 89890, + [SMALL_STATE(1428)] = 89940, + [SMALL_STATE(1429)] = 89982, + [SMALL_STATE(1430)] = 90024, + [SMALL_STATE(1431)] = 90066, + [SMALL_STATE(1432)] = 90112, + [SMALL_STATE(1433)] = 90156, + [SMALL_STATE(1434)] = 90198, + [SMALL_STATE(1435)] = 90240, + [SMALL_STATE(1436)] = 90286, + [SMALL_STATE(1437)] = 90328, + [SMALL_STATE(1438)] = 90370, + [SMALL_STATE(1439)] = 90412, + [SMALL_STATE(1440)] = 90454, + [SMALL_STATE(1441)] = 90496, + [SMALL_STATE(1442)] = 90538, + [SMALL_STATE(1443)] = 90580, + [SMALL_STATE(1444)] = 90622, + [SMALL_STATE(1445)] = 90664, + [SMALL_STATE(1446)] = 90708, + [SMALL_STATE(1447)] = 90752, + [SMALL_STATE(1448)] = 90796, + [SMALL_STATE(1449)] = 90838, + [SMALL_STATE(1450)] = 90880, + [SMALL_STATE(1451)] = 90922, + [SMALL_STATE(1452)] = 90964, + [SMALL_STATE(1453)] = 91008, + [SMALL_STATE(1454)] = 91052, + [SMALL_STATE(1455)] = 91096, + [SMALL_STATE(1456)] = 91138, + [SMALL_STATE(1457)] = 91180, + [SMALL_STATE(1458)] = 91222, + [SMALL_STATE(1459)] = 91268, + [SMALL_STATE(1460)] = 91311, + [SMALL_STATE(1461)] = 91352, + [SMALL_STATE(1462)] = 91395, + [SMALL_STATE(1463)] = 91438, + [SMALL_STATE(1464)] = 91479, + [SMALL_STATE(1465)] = 91522, + [SMALL_STATE(1466)] = 91563, + [SMALL_STATE(1467)] = 91606, + [SMALL_STATE(1468)] = 91649, + [SMALL_STATE(1469)] = 91692, + [SMALL_STATE(1470)] = 91735, + [SMALL_STATE(1471)] = 91776, + [SMALL_STATE(1472)] = 91819, + [SMALL_STATE(1473)] = 91860, + [SMALL_STATE(1474)] = 91901, + [SMALL_STATE(1475)] = 91942, + [SMALL_STATE(1476)] = 91983, + [SMALL_STATE(1477)] = 92024, + [SMALL_STATE(1478)] = 92065, + [SMALL_STATE(1479)] = 92139, + [SMALL_STATE(1480)] = 92213, + [SMALL_STATE(1481)] = 92281, + [SMALL_STATE(1482)] = 92349, + [SMALL_STATE(1483)] = 92417, + [SMALL_STATE(1484)] = 92485, + [SMALL_STATE(1485)] = 92553, + [SMALL_STATE(1486)] = 92621, + [SMALL_STATE(1487)] = 92689, + [SMALL_STATE(1488)] = 92757, + [SMALL_STATE(1489)] = 92825, + [SMALL_STATE(1490)] = 92893, + [SMALL_STATE(1491)] = 92961, + [SMALL_STATE(1492)] = 93029, + [SMALL_STATE(1493)] = 93097, + [SMALL_STATE(1494)] = 93165, + [SMALL_STATE(1495)] = 93233, + [SMALL_STATE(1496)] = 93301, + [SMALL_STATE(1497)] = 93369, + [SMALL_STATE(1498)] = 93437, + [SMALL_STATE(1499)] = 93505, + [SMALL_STATE(1500)] = 93573, + [SMALL_STATE(1501)] = 93641, + [SMALL_STATE(1502)] = 93709, + [SMALL_STATE(1503)] = 93777, + [SMALL_STATE(1504)] = 93845, + [SMALL_STATE(1505)] = 93913, + [SMALL_STATE(1506)] = 93981, + [SMALL_STATE(1507)] = 94049, + [SMALL_STATE(1508)] = 94117, + [SMALL_STATE(1509)] = 94185, + [SMALL_STATE(1510)] = 94253, + [SMALL_STATE(1511)] = 94321, + [SMALL_STATE(1512)] = 94389, + [SMALL_STATE(1513)] = 94457, + [SMALL_STATE(1514)] = 94525, + [SMALL_STATE(1515)] = 94593, + [SMALL_STATE(1516)] = 94661, + [SMALL_STATE(1517)] = 94726, + [SMALL_STATE(1518)] = 94791, + [SMALL_STATE(1519)] = 94856, + [SMALL_STATE(1520)] = 94921, + [SMALL_STATE(1521)] = 94986, + [SMALL_STATE(1522)] = 95052, + [SMALL_STATE(1523)] = 95118, + [SMALL_STATE(1524)] = 95184, + [SMALL_STATE(1525)] = 95250, + [SMALL_STATE(1526)] = 95316, + [SMALL_STATE(1527)] = 95382, + [SMALL_STATE(1528)] = 95448, + [SMALL_STATE(1529)] = 95514, + [SMALL_STATE(1530)] = 95580, + [SMALL_STATE(1531)] = 95646, + [SMALL_STATE(1532)] = 95712, + [SMALL_STATE(1533)] = 95778, + [SMALL_STATE(1534)] = 95844, + [SMALL_STATE(1535)] = 95910, + [SMALL_STATE(1536)] = 95976, + [SMALL_STATE(1537)] = 96042, + [SMALL_STATE(1538)] = 96108, + [SMALL_STATE(1539)] = 96174, + [SMALL_STATE(1540)] = 96240, + [SMALL_STATE(1541)] = 96306, + [SMALL_STATE(1542)] = 96369, + [SMALL_STATE(1543)] = 96427, + [SMALL_STATE(1544)] = 96485, + [SMALL_STATE(1545)] = 96531, + [SMALL_STATE(1546)] = 96589, + [SMALL_STATE(1547)] = 96647, + [SMALL_STATE(1548)] = 96705, + [SMALL_STATE(1549)] = 96763, + [SMALL_STATE(1550)] = 96821, + [SMALL_STATE(1551)] = 96867, + [SMALL_STATE(1552)] = 96925, + [SMALL_STATE(1553)] = 96970, + [SMALL_STATE(1554)] = 97015, + [SMALL_STATE(1555)] = 97059, + [SMALL_STATE(1556)] = 97103, + [SMALL_STATE(1557)] = 97147, + [SMALL_STATE(1558)] = 97191, + [SMALL_STATE(1559)] = 97234, + [SMALL_STATE(1560)] = 97277, + [SMALL_STATE(1561)] = 97318, + [SMALL_STATE(1562)] = 97361, + [SMALL_STATE(1563)] = 97402, + [SMALL_STATE(1564)] = 97445, + [SMALL_STATE(1565)] = 97487, + [SMALL_STATE(1566)] = 97519, + [SMALL_STATE(1567)] = 97551, + [SMALL_STATE(1568)] = 97583, + [SMALL_STATE(1569)] = 97615, + [SMALL_STATE(1570)] = 97647, + [SMALL_STATE(1571)] = 97679, + [SMALL_STATE(1572)] = 97709, + [SMALL_STATE(1573)] = 97751, + [SMALL_STATE(1574)] = 97781, + [SMALL_STATE(1575)] = 97811, + [SMALL_STATE(1576)] = 97841, + [SMALL_STATE(1577)] = 97871, + [SMALL_STATE(1578)] = 97901, + [SMALL_STATE(1579)] = 97931, + [SMALL_STATE(1580)] = 97961, + [SMALL_STATE(1581)] = 97991, + [SMALL_STATE(1582)] = 98021, + [SMALL_STATE(1583)] = 98050, + [SMALL_STATE(1584)] = 98079, + [SMALL_STATE(1585)] = 98108, + [SMALL_STATE(1586)] = 98137, + [SMALL_STATE(1587)] = 98162, + [SMALL_STATE(1588)] = 98187, + [SMALL_STATE(1589)] = 98212, + [SMALL_STATE(1590)] = 98241, + [SMALL_STATE(1591)] = 98270, + [SMALL_STATE(1592)] = 98299, + [SMALL_STATE(1593)] = 98324, + [SMALL_STATE(1594)] = 98353, + [SMALL_STATE(1595)] = 98382, + [SMALL_STATE(1596)] = 98411, + [SMALL_STATE(1597)] = 98440, + [SMALL_STATE(1598)] = 98469, + [SMALL_STATE(1599)] = 98516, + [SMALL_STATE(1600)] = 98545, + [SMALL_STATE(1601)] = 98574, + [SMALL_STATE(1602)] = 98603, + [SMALL_STATE(1603)] = 98632, + [SMALL_STATE(1604)] = 98661, + [SMALL_STATE(1605)] = 98690, + [SMALL_STATE(1606)] = 98719, + [SMALL_STATE(1607)] = 98748, + [SMALL_STATE(1608)] = 98777, + [SMALL_STATE(1609)] = 98806, + [SMALL_STATE(1610)] = 98853, + [SMALL_STATE(1611)] = 98900, + [SMALL_STATE(1612)] = 98947, + [SMALL_STATE(1613)] = 98994, + [SMALL_STATE(1614)] = 99041, + [SMALL_STATE(1615)] = 99088, + [SMALL_STATE(1616)] = 99135, + [SMALL_STATE(1617)] = 99182, + [SMALL_STATE(1618)] = 99229, + [SMALL_STATE(1619)] = 99258, + [SMALL_STATE(1620)] = 99287, + [SMALL_STATE(1621)] = 99319, + [SMALL_STATE(1622)] = 99347, + [SMALL_STATE(1623)] = 99393, + [SMALL_STATE(1624)] = 99425, + [SMALL_STATE(1625)] = 99471, + [SMALL_STATE(1626)] = 99517, + [SMALL_STATE(1627)] = 99563, + [SMALL_STATE(1628)] = 99609, + [SMALL_STATE(1629)] = 99633, + [SMALL_STATE(1630)] = 99679, + [SMALL_STATE(1631)] = 99725, + [SMALL_STATE(1632)] = 99755, + [SMALL_STATE(1633)] = 99801, + [SMALL_STATE(1634)] = 99825, + [SMALL_STATE(1635)] = 99871, + [SMALL_STATE(1636)] = 99895, + [SMALL_STATE(1637)] = 99941, + [SMALL_STATE(1638)] = 99969, + [SMALL_STATE(1639)] = 99993, + [SMALL_STATE(1640)] = 100039, + [SMALL_STATE(1641)] = 100082, + [SMALL_STATE(1642)] = 100122, + [SMALL_STATE(1643)] = 100162, + [SMALL_STATE(1644)] = 100202, + [SMALL_STATE(1645)] = 100242, + [SMALL_STATE(1646)] = 100268, + [SMALL_STATE(1647)] = 100307, + [SMALL_STATE(1648)] = 100344, + [SMALL_STATE(1649)] = 100381, + [SMALL_STATE(1650)] = 100400, + [SMALL_STATE(1651)] = 100441, + [SMALL_STATE(1652)] = 100468, + [SMALL_STATE(1653)] = 100495, + [SMALL_STATE(1654)] = 100522, + [SMALL_STATE(1655)] = 100563, + [SMALL_STATE(1656)] = 100588, + [SMALL_STATE(1657)] = 100611, + [SMALL_STATE(1658)] = 100632, + [SMALL_STATE(1659)] = 100651, + [SMALL_STATE(1660)] = 100670, + [SMALL_STATE(1661)] = 100711, + [SMALL_STATE(1662)] = 100752, + [SMALL_STATE(1663)] = 100793, + [SMALL_STATE(1664)] = 100834, + [SMALL_STATE(1665)] = 100875, + [SMALL_STATE(1666)] = 100916, + [SMALL_STATE(1667)] = 100946, + [SMALL_STATE(1668)] = 100972, + [SMALL_STATE(1669)] = 101010, + [SMALL_STATE(1670)] = 101048, + [SMALL_STATE(1671)] = 101078, + [SMALL_STATE(1672)] = 101108, + [SMALL_STATE(1673)] = 101146, + [SMALL_STATE(1674)] = 101176, + [SMALL_STATE(1675)] = 101214, + [SMALL_STATE(1676)] = 101244, + [SMALL_STATE(1677)] = 101270, + [SMALL_STATE(1678)] = 101308, + [SMALL_STATE(1679)] = 101338, + [SMALL_STATE(1680)] = 101376, + [SMALL_STATE(1681)] = 101414, + [SMALL_STATE(1682)] = 101446, + [SMALL_STATE(1683)] = 101476, + [SMALL_STATE(1684)] = 101506, + [SMALL_STATE(1685)] = 101544, + [SMALL_STATE(1686)] = 101574, + [SMALL_STATE(1687)] = 101604, + [SMALL_STATE(1688)] = 101642, + [SMALL_STATE(1689)] = 101680, + [SMALL_STATE(1690)] = 101700, + [SMALL_STATE(1691)] = 101730, + [SMALL_STATE(1692)] = 101760, + [SMALL_STATE(1693)] = 101798, + [SMALL_STATE(1694)] = 101836, + [SMALL_STATE(1695)] = 101866, + [SMALL_STATE(1696)] = 101896, + [SMALL_STATE(1697)] = 101934, + [SMALL_STATE(1698)] = 101954, + [SMALL_STATE(1699)] = 101992, + [SMALL_STATE(1700)] = 102030, + [SMALL_STATE(1701)] = 102060, + [SMALL_STATE(1702)] = 102090, + [SMALL_STATE(1703)] = 102128, + [SMALL_STATE(1704)] = 102166, + [SMALL_STATE(1705)] = 102196, + [SMALL_STATE(1706)] = 102226, + [SMALL_STATE(1707)] = 102264, + [SMALL_STATE(1708)] = 102290, + [SMALL_STATE(1709)] = 102314, + [SMALL_STATE(1710)] = 102352, + [SMALL_STATE(1711)] = 102376, + [SMALL_STATE(1712)] = 102396, + [SMALL_STATE(1713)] = 102434, + [SMALL_STATE(1714)] = 102456, + [SMALL_STATE(1715)] = 102494, + [SMALL_STATE(1716)] = 102532, + [SMALL_STATE(1717)] = 102570, + [SMALL_STATE(1718)] = 102608, + [SMALL_STATE(1719)] = 102638, + [SMALL_STATE(1720)] = 102676, + [SMALL_STATE(1721)] = 102701, + [SMALL_STATE(1722)] = 102718, + [SMALL_STATE(1723)] = 102735, + [SMALL_STATE(1724)] = 102752, + [SMALL_STATE(1725)] = 102777, + [SMALL_STATE(1726)] = 102800, + [SMALL_STATE(1727)] = 102821, + [SMALL_STATE(1728)] = 102838, + [SMALL_STATE(1729)] = 102857, + [SMALL_STATE(1730)] = 102882, + [SMALL_STATE(1731)] = 102907, + [SMALL_STATE(1732)] = 102932, + [SMALL_STATE(1733)] = 102957, + [SMALL_STATE(1734)] = 102982, + [SMALL_STATE(1735)] = 103011, + [SMALL_STATE(1736)] = 103040, + [SMALL_STATE(1737)] = 103065, + [SMALL_STATE(1738)] = 103082, + [SMALL_STATE(1739)] = 103105, + [SMALL_STATE(1740)] = 103126, + [SMALL_STATE(1741)] = 103143, + [SMALL_STATE(1742)] = 103162, + [SMALL_STATE(1743)] = 103186, + [SMALL_STATE(1744)] = 103202, + [SMALL_STATE(1745)] = 103218, + [SMALL_STATE(1746)] = 103234, + [SMALL_STATE(1747)] = 103258, + [SMALL_STATE(1748)] = 103280, + [SMALL_STATE(1749)] = 103300, + [SMALL_STATE(1750)] = 103316, + [SMALL_STATE(1751)] = 103334, + [SMALL_STATE(1752)] = 103356, + [SMALL_STATE(1753)] = 103374, + [SMALL_STATE(1754)] = 103394, + [SMALL_STATE(1755)] = 103418, + [SMALL_STATE(1756)] = 103436, + [SMALL_STATE(1757)] = 103456, + [SMALL_STATE(1758)] = 103480, + [SMALL_STATE(1759)] = 103502, + [SMALL_STATE(1760)] = 103526, + [SMALL_STATE(1761)] = 103556, + [SMALL_STATE(1762)] = 103580, + [SMALL_STATE(1763)] = 103604, + [SMALL_STATE(1764)] = 103628, + [SMALL_STATE(1765)] = 103652, + [SMALL_STATE(1766)] = 103672, + [SMALL_STATE(1767)] = 103696, + [SMALL_STATE(1768)] = 103714, + [SMALL_STATE(1769)] = 103736, + [SMALL_STATE(1770)] = 103760, + [SMALL_STATE(1771)] = 103784, + [SMALL_STATE(1772)] = 103806, + [SMALL_STATE(1773)] = 103826, + [SMALL_STATE(1774)] = 103842, + [SMALL_STATE(1775)] = 103862, + [SMALL_STATE(1776)] = 103880, + [SMALL_STATE(1777)] = 103896, + [SMALL_STATE(1778)] = 103920, + [SMALL_STATE(1779)] = 103941, + [SMALL_STATE(1780)] = 103962, + [SMALL_STATE(1781)] = 103991, + [SMALL_STATE(1782)] = 104014, + [SMALL_STATE(1783)] = 104033, + [SMALL_STATE(1784)] = 104054, + [SMALL_STATE(1785)] = 104069, + [SMALL_STATE(1786)] = 104086, + [SMALL_STATE(1787)] = 104107, + [SMALL_STATE(1788)] = 104124, + [SMALL_STATE(1789)] = 104153, + [SMALL_STATE(1790)] = 104174, + [SMALL_STATE(1791)] = 104195, + [SMALL_STATE(1792)] = 104220, + [SMALL_STATE(1793)] = 104249, + [SMALL_STATE(1794)] = 104278, + [SMALL_STATE(1795)] = 104299, + [SMALL_STATE(1796)] = 104320, + [SMALL_STATE(1797)] = 104343, + [SMALL_STATE(1798)] = 104364, + [SMALL_STATE(1799)] = 104393, + [SMALL_STATE(1800)] = 104420, + [SMALL_STATE(1801)] = 104443, + [SMALL_STATE(1802)] = 104472, + [SMALL_STATE(1803)] = 104499, + [SMALL_STATE(1804)] = 104520, + [SMALL_STATE(1805)] = 104543, + [SMALL_STATE(1806)] = 104564, + [SMALL_STATE(1807)] = 104587, + [SMALL_STATE(1808)] = 104604, + [SMALL_STATE(1809)] = 104623, + [SMALL_STATE(1810)] = 104650, + [SMALL_STATE(1811)] = 104671, + [SMALL_STATE(1812)] = 104696, + [SMALL_STATE(1813)] = 104723, + [SMALL_STATE(1814)] = 104750, + [SMALL_STATE(1815)] = 104775, + [SMALL_STATE(1816)] = 104804, + [SMALL_STATE(1817)] = 104831, + [SMALL_STATE(1818)] = 104860, + [SMALL_STATE(1819)] = 104887, + [SMALL_STATE(1820)] = 104912, + [SMALL_STATE(1821)] = 104933, + [SMALL_STATE(1822)] = 104956, + [SMALL_STATE(1823)] = 104977, + [SMALL_STATE(1824)] = 105006, + [SMALL_STATE(1825)] = 105031, + [SMALL_STATE(1826)] = 105058, + [SMALL_STATE(1827)] = 105087, + [SMALL_STATE(1828)] = 105112, + [SMALL_STATE(1829)] = 105135, + [SMALL_STATE(1830)] = 105157, + [SMALL_STATE(1831)] = 105175, + [SMALL_STATE(1832)] = 105191, + [SMALL_STATE(1833)] = 105217, + [SMALL_STATE(1834)] = 105239, + [SMALL_STATE(1835)] = 105257, + [SMALL_STATE(1836)] = 105277, + [SMALL_STATE(1837)] = 105299, + [SMALL_STATE(1838)] = 105317, + [SMALL_STATE(1839)] = 105337, + [SMALL_STATE(1840)] = 105355, + [SMALL_STATE(1841)] = 105381, + [SMALL_STATE(1842)] = 105403, + [SMALL_STATE(1843)] = 105429, + [SMALL_STATE(1844)] = 105447, + [SMALL_STATE(1845)] = 105469, + [SMALL_STATE(1846)] = 105487, + [SMALL_STATE(1847)] = 105513, + [SMALL_STATE(1848)] = 105531, + [SMALL_STATE(1849)] = 105557, + [SMALL_STATE(1850)] = 105583, + [SMALL_STATE(1851)] = 105607, + [SMALL_STATE(1852)] = 105625, + [SMALL_STATE(1853)] = 105643, + [SMALL_STATE(1854)] = 105669, + [SMALL_STATE(1855)] = 105695, + [SMALL_STATE(1856)] = 105721, + [SMALL_STATE(1857)] = 105743, + [SMALL_STATE(1858)] = 105769, + [SMALL_STATE(1859)] = 105791, + [SMALL_STATE(1860)] = 105809, + [SMALL_STATE(1861)] = 105831, + [SMALL_STATE(1862)] = 105857, + [SMALL_STATE(1863)] = 105883, + [SMALL_STATE(1864)] = 105909, + [SMALL_STATE(1865)] = 105933, + [SMALL_STATE(1866)] = 105959, + [SMALL_STATE(1867)] = 105985, + [SMALL_STATE(1868)] = 106011, + [SMALL_STATE(1869)] = 106029, + [SMALL_STATE(1870)] = 106045, + [SMALL_STATE(1871)] = 106067, + [SMALL_STATE(1872)] = 106089, + [SMALL_STATE(1873)] = 106115, + [SMALL_STATE(1874)] = 106135, + [SMALL_STATE(1875)] = 106157, + [SMALL_STATE(1876)] = 106183, + [SMALL_STATE(1877)] = 106207, + [SMALL_STATE(1878)] = 106225, + [SMALL_STATE(1879)] = 106249, + [SMALL_STATE(1880)] = 106270, + [SMALL_STATE(1881)] = 106283, + [SMALL_STATE(1882)] = 106306, + [SMALL_STATE(1883)] = 106323, + [SMALL_STATE(1884)] = 106338, + [SMALL_STATE(1885)] = 106359, + [SMALL_STATE(1886)] = 106374, + [SMALL_STATE(1887)] = 106395, + [SMALL_STATE(1888)] = 106412, + [SMALL_STATE(1889)] = 106425, + [SMALL_STATE(1890)] = 106444, + [SMALL_STATE(1891)] = 106465, + [SMALL_STATE(1892)] = 106488, + [SMALL_STATE(1893)] = 106505, + [SMALL_STATE(1894)] = 106522, + [SMALL_STATE(1895)] = 106539, + [SMALL_STATE(1896)] = 106556, + [SMALL_STATE(1897)] = 106573, + [SMALL_STATE(1898)] = 106586, + [SMALL_STATE(1899)] = 106601, + [SMALL_STATE(1900)] = 106614, + [SMALL_STATE(1901)] = 106629, + [SMALL_STATE(1902)] = 106646, + [SMALL_STATE(1903)] = 106659, + [SMALL_STATE(1904)] = 106680, + [SMALL_STATE(1905)] = 106701, + [SMALL_STATE(1906)] = 106718, + [SMALL_STATE(1907)] = 106735, + [SMALL_STATE(1908)] = 106748, + [SMALL_STATE(1909)] = 106769, + [SMALL_STATE(1910)] = 106786, + [SMALL_STATE(1911)] = 106807, + [SMALL_STATE(1912)] = 106830, + [SMALL_STATE(1913)] = 106847, + [SMALL_STATE(1914)] = 106860, + [SMALL_STATE(1915)] = 106877, + [SMALL_STATE(1916)] = 106892, + [SMALL_STATE(1917)] = 106909, + [SMALL_STATE(1918)] = 106922, + [SMALL_STATE(1919)] = 106935, + [SMALL_STATE(1920)] = 106956, + [SMALL_STATE(1921)] = 106969, + [SMALL_STATE(1922)] = 106990, + [SMALL_STATE(1923)] = 107011, + [SMALL_STATE(1924)] = 107032, + [SMALL_STATE(1925)] = 107045, + [SMALL_STATE(1926)] = 107058, + [SMALL_STATE(1927)] = 107075, + [SMALL_STATE(1928)] = 107088, + [SMALL_STATE(1929)] = 107109, + [SMALL_STATE(1930)] = 107122, + [SMALL_STATE(1931)] = 107135, + [SMALL_STATE(1932)] = 107152, + [SMALL_STATE(1933)] = 107165, + [SMALL_STATE(1934)] = 107182, + [SMALL_STATE(1935)] = 107199, + [SMALL_STATE(1936)] = 107212, + [SMALL_STATE(1937)] = 107233, + [SMALL_STATE(1938)] = 107254, + [SMALL_STATE(1939)] = 107271, + [SMALL_STATE(1940)] = 107292, + [SMALL_STATE(1941)] = 107309, + [SMALL_STATE(1942)] = 107330, + [SMALL_STATE(1943)] = 107353, + [SMALL_STATE(1944)] = 107368, + [SMALL_STATE(1945)] = 107385, + [SMALL_STATE(1946)] = 107402, + [SMALL_STATE(1947)] = 107425, + [SMALL_STATE(1948)] = 107446, + [SMALL_STATE(1949)] = 107467, + [SMALL_STATE(1950)] = 107482, + [SMALL_STATE(1951)] = 107505, + [SMALL_STATE(1952)] = 107522, + [SMALL_STATE(1953)] = 107543, + [SMALL_STATE(1954)] = 107560, + [SMALL_STATE(1955)] = 107577, + [SMALL_STATE(1956)] = 107594, + [SMALL_STATE(1957)] = 107617, + [SMALL_STATE(1958)] = 107634, + [SMALL_STATE(1959)] = 107651, + [SMALL_STATE(1960)] = 107672, + [SMALL_STATE(1961)] = 107693, + [SMALL_STATE(1962)] = 107714, + [SMALL_STATE(1963)] = 107735, + [SMALL_STATE(1964)] = 107756, + [SMALL_STATE(1965)] = 107769, + [SMALL_STATE(1966)] = 107786, + [SMALL_STATE(1967)] = 107807, + [SMALL_STATE(1968)] = 107824, + [SMALL_STATE(1969)] = 107837, + [SMALL_STATE(1970)] = 107854, + [SMALL_STATE(1971)] = 107871, + [SMALL_STATE(1972)] = 107892, + [SMALL_STATE(1973)] = 107909, + [SMALL_STATE(1974)] = 107930, + [SMALL_STATE(1975)] = 107951, + [SMALL_STATE(1976)] = 107972, + [SMALL_STATE(1977)] = 107985, + [SMALL_STATE(1978)] = 108006, + [SMALL_STATE(1979)] = 108027, + [SMALL_STATE(1980)] = 108040, + [SMALL_STATE(1981)] = 108059, + [SMALL_STATE(1982)] = 108072, + [SMALL_STATE(1983)] = 108089, + [SMALL_STATE(1984)] = 108106, + [SMALL_STATE(1985)] = 108123, + [SMALL_STATE(1986)] = 108138, + [SMALL_STATE(1987)] = 108151, + [SMALL_STATE(1988)] = 108164, + [SMALL_STATE(1989)] = 108176, + [SMALL_STATE(1990)] = 108188, + [SMALL_STATE(1991)] = 108204, + [SMALL_STATE(1992)] = 108218, + [SMALL_STATE(1993)] = 108234, + [SMALL_STATE(1994)] = 108246, + [SMALL_STATE(1995)] = 108264, + [SMALL_STATE(1996)] = 108282, + [SMALL_STATE(1997)] = 108300, + [SMALL_STATE(1998)] = 108312, + [SMALL_STATE(1999)] = 108332, + [SMALL_STATE(2000)] = 108348, + [SMALL_STATE(2001)] = 108362, + [SMALL_STATE(2002)] = 108382, + [SMALL_STATE(2003)] = 108398, + [SMALL_STATE(2004)] = 108416, + [SMALL_STATE(2005)] = 108436, + [SMALL_STATE(2006)] = 108448, + [SMALL_STATE(2007)] = 108468, + [SMALL_STATE(2008)] = 108488, + [SMALL_STATE(2009)] = 108504, + [SMALL_STATE(2010)] = 108516, + [SMALL_STATE(2011)] = 108528, + [SMALL_STATE(2012)] = 108540, + [SMALL_STATE(2013)] = 108552, + [SMALL_STATE(2014)] = 108570, + [SMALL_STATE(2015)] = 108588, + [SMALL_STATE(2016)] = 108600, + [SMALL_STATE(2017)] = 108612, + [SMALL_STATE(2018)] = 108624, + [SMALL_STATE(2019)] = 108644, + [SMALL_STATE(2020)] = 108664, + [SMALL_STATE(2021)] = 108684, + [SMALL_STATE(2022)] = 108700, + [SMALL_STATE(2023)] = 108720, + [SMALL_STATE(2024)] = 108740, + [SMALL_STATE(2025)] = 108752, + [SMALL_STATE(2026)] = 108770, + [SMALL_STATE(2027)] = 108782, + [SMALL_STATE(2028)] = 108800, + [SMALL_STATE(2029)] = 108818, + [SMALL_STATE(2030)] = 108838, + [SMALL_STATE(2031)] = 108850, + [SMALL_STATE(2032)] = 108862, + [SMALL_STATE(2033)] = 108874, + [SMALL_STATE(2034)] = 108890, + [SMALL_STATE(2035)] = 108904, + [SMALL_STATE(2036)] = 108920, + [SMALL_STATE(2037)] = 108932, + [SMALL_STATE(2038)] = 108944, + [SMALL_STATE(2039)] = 108964, + [SMALL_STATE(2040)] = 108976, + [SMALL_STATE(2041)] = 108996, + [SMALL_STATE(2042)] = 109012, + [SMALL_STATE(2043)] = 109024, + [SMALL_STATE(2044)] = 109036, + [SMALL_STATE(2045)] = 109048, + [SMALL_STATE(2046)] = 109060, + [SMALL_STATE(2047)] = 109078, + [SMALL_STATE(2048)] = 109094, + [SMALL_STATE(2049)] = 109108, + [SMALL_STATE(2050)] = 109124, + [SMALL_STATE(2051)] = 109136, + [SMALL_STATE(2052)] = 109156, + [SMALL_STATE(2053)] = 109168, + [SMALL_STATE(2054)] = 109186, + [SMALL_STATE(2055)] = 109198, + [SMALL_STATE(2056)] = 109210, + [SMALL_STATE(2057)] = 109222, + [SMALL_STATE(2058)] = 109234, + [SMALL_STATE(2059)] = 109254, + [SMALL_STATE(2060)] = 109266, + [SMALL_STATE(2061)] = 109284, + [SMALL_STATE(2062)] = 109304, + [SMALL_STATE(2063)] = 109322, + [SMALL_STATE(2064)] = 109334, + [SMALL_STATE(2065)] = 109354, + [SMALL_STATE(2066)] = 109368, + [SMALL_STATE(2067)] = 109380, + [SMALL_STATE(2068)] = 109396, + [SMALL_STATE(2069)] = 109408, + [SMALL_STATE(2070)] = 109420, + [SMALL_STATE(2071)] = 109440, + [SMALL_STATE(2072)] = 109452, + [SMALL_STATE(2073)] = 109464, + [SMALL_STATE(2074)] = 109476, + [SMALL_STATE(2075)] = 109488, + [SMALL_STATE(2076)] = 109500, + [SMALL_STATE(2077)] = 109520, + [SMALL_STATE(2078)] = 109532, + [SMALL_STATE(2079)] = 109544, + [SMALL_STATE(2080)] = 109564, + [SMALL_STATE(2081)] = 109584, + [SMALL_STATE(2082)] = 109596, + [SMALL_STATE(2083)] = 109616, + [SMALL_STATE(2084)] = 109628, + [SMALL_STATE(2085)] = 109640, + [SMALL_STATE(2086)] = 109660, + [SMALL_STATE(2087)] = 109680, + [SMALL_STATE(2088)] = 109700, + [SMALL_STATE(2089)] = 109720, + [SMALL_STATE(2090)] = 109740, + [SMALL_STATE(2091)] = 109752, + [SMALL_STATE(2092)] = 109768, + [SMALL_STATE(2093)] = 109780, + [SMALL_STATE(2094)] = 109800, + [SMALL_STATE(2095)] = 109814, + [SMALL_STATE(2096)] = 109834, + [SMALL_STATE(2097)] = 109846, + [SMALL_STATE(2098)] = 109858, + [SMALL_STATE(2099)] = 109874, + [SMALL_STATE(2100)] = 109886, + [SMALL_STATE(2101)] = 109898, + [SMALL_STATE(2102)] = 109918, + [SMALL_STATE(2103)] = 109930, + [SMALL_STATE(2104)] = 109942, + [SMALL_STATE(2105)] = 109954, + [SMALL_STATE(2106)] = 109974, + [SMALL_STATE(2107)] = 109986, + [SMALL_STATE(2108)] = 110002, + [SMALL_STATE(2109)] = 110017, + [SMALL_STATE(2110)] = 110034, + [SMALL_STATE(2111)] = 110049, + [SMALL_STATE(2112)] = 110060, + [SMALL_STATE(2113)] = 110071, + [SMALL_STATE(2114)] = 110082, + [SMALL_STATE(2115)] = 110093, + [SMALL_STATE(2116)] = 110110, + [SMALL_STATE(2117)] = 110121, + [SMALL_STATE(2118)] = 110138, + [SMALL_STATE(2119)] = 110149, + [SMALL_STATE(2120)] = 110160, + [SMALL_STATE(2121)] = 110177, + [SMALL_STATE(2122)] = 110194, + [SMALL_STATE(2123)] = 110205, + [SMALL_STATE(2124)] = 110216, + [SMALL_STATE(2125)] = 110227, + [SMALL_STATE(2126)] = 110238, + [SMALL_STATE(2127)] = 110249, + [SMALL_STATE(2128)] = 110260, + [SMALL_STATE(2129)] = 110277, + [SMALL_STATE(2130)] = 110288, + [SMALL_STATE(2131)] = 110299, + [SMALL_STATE(2132)] = 110316, + [SMALL_STATE(2133)] = 110327, + [SMALL_STATE(2134)] = 110338, + [SMALL_STATE(2135)] = 110349, + [SMALL_STATE(2136)] = 110360, + [SMALL_STATE(2137)] = 110371, + [SMALL_STATE(2138)] = 110386, + [SMALL_STATE(2139)] = 110397, + [SMALL_STATE(2140)] = 110408, + [SMALL_STATE(2141)] = 110419, + [SMALL_STATE(2142)] = 110436, + [SMALL_STATE(2143)] = 110449, + [SMALL_STATE(2144)] = 110460, + [SMALL_STATE(2145)] = 110471, + [SMALL_STATE(2146)] = 110482, + [SMALL_STATE(2147)] = 110493, + [SMALL_STATE(2148)] = 110504, + [SMALL_STATE(2149)] = 110515, + [SMALL_STATE(2150)] = 110526, + [SMALL_STATE(2151)] = 110543, + [SMALL_STATE(2152)] = 110554, + [SMALL_STATE(2153)] = 110571, + [SMALL_STATE(2154)] = 110586, + [SMALL_STATE(2155)] = 110597, + [SMALL_STATE(2156)] = 110612, + [SMALL_STATE(2157)] = 110629, + [SMALL_STATE(2158)] = 110646, + [SMALL_STATE(2159)] = 110663, + [SMALL_STATE(2160)] = 110674, + [SMALL_STATE(2161)] = 110691, + [SMALL_STATE(2162)] = 110702, + [SMALL_STATE(2163)] = 110713, + [SMALL_STATE(2164)] = 110726, + [SMALL_STATE(2165)] = 110737, + [SMALL_STATE(2166)] = 110754, + [SMALL_STATE(2167)] = 110771, + [SMALL_STATE(2168)] = 110786, + [SMALL_STATE(2169)] = 110797, + [SMALL_STATE(2170)] = 110808, + [SMALL_STATE(2171)] = 110823, + [SMALL_STATE(2172)] = 110834, + [SMALL_STATE(2173)] = 110851, + [SMALL_STATE(2174)] = 110866, + [SMALL_STATE(2175)] = 110881, + [SMALL_STATE(2176)] = 110898, + [SMALL_STATE(2177)] = 110909, + [SMALL_STATE(2178)] = 110926, + [SMALL_STATE(2179)] = 110937, + [SMALL_STATE(2180)] = 110948, + [SMALL_STATE(2181)] = 110959, + [SMALL_STATE(2182)] = 110976, + [SMALL_STATE(2183)] = 110987, + [SMALL_STATE(2184)] = 111002, + [SMALL_STATE(2185)] = 111013, + [SMALL_STATE(2186)] = 111024, + [SMALL_STATE(2187)] = 111035, + [SMALL_STATE(2188)] = 111048, + [SMALL_STATE(2189)] = 111059, + [SMALL_STATE(2190)] = 111070, + [SMALL_STATE(2191)] = 111081, + [SMALL_STATE(2192)] = 111092, + [SMALL_STATE(2193)] = 111107, + [SMALL_STATE(2194)] = 111122, + [SMALL_STATE(2195)] = 111133, + [SMALL_STATE(2196)] = 111148, + [SMALL_STATE(2197)] = 111159, + [SMALL_STATE(2198)] = 111170, + [SMALL_STATE(2199)] = 111181, + [SMALL_STATE(2200)] = 111198, + [SMALL_STATE(2201)] = 111215, + [SMALL_STATE(2202)] = 111232, + [SMALL_STATE(2203)] = 111243, + [SMALL_STATE(2204)] = 111254, + [SMALL_STATE(2205)] = 111265, + [SMALL_STATE(2206)] = 111276, + [SMALL_STATE(2207)] = 111291, + [SMALL_STATE(2208)] = 111302, + [SMALL_STATE(2209)] = 111313, + [SMALL_STATE(2210)] = 111328, + [SMALL_STATE(2211)] = 111339, + [SMALL_STATE(2212)] = 111350, + [SMALL_STATE(2213)] = 111361, + [SMALL_STATE(2214)] = 111376, + [SMALL_STATE(2215)] = 111391, + [SMALL_STATE(2216)] = 111408, + [SMALL_STATE(2217)] = 111425, + [SMALL_STATE(2218)] = 111442, + [SMALL_STATE(2219)] = 111453, + [SMALL_STATE(2220)] = 111464, + [SMALL_STATE(2221)] = 111479, + [SMALL_STATE(2222)] = 111496, + [SMALL_STATE(2223)] = 111513, + [SMALL_STATE(2224)] = 111530, + [SMALL_STATE(2225)] = 111547, + [SMALL_STATE(2226)] = 111564, + [SMALL_STATE(2227)] = 111575, + [SMALL_STATE(2228)] = 111592, + [SMALL_STATE(2229)] = 111603, + [SMALL_STATE(2230)] = 111618, + [SMALL_STATE(2231)] = 111633, + [SMALL_STATE(2232)] = 111644, + [SMALL_STATE(2233)] = 111655, + [SMALL_STATE(2234)] = 111666, + [SMALL_STATE(2235)] = 111677, + [SMALL_STATE(2236)] = 111688, + [SMALL_STATE(2237)] = 111699, + [SMALL_STATE(2238)] = 111709, + [SMALL_STATE(2239)] = 111723, + [SMALL_STATE(2240)] = 111737, + [SMALL_STATE(2241)] = 111749, + [SMALL_STATE(2242)] = 111763, + [SMALL_STATE(2243)] = 111777, + [SMALL_STATE(2244)] = 111791, + [SMALL_STATE(2245)] = 111805, + [SMALL_STATE(2246)] = 111819, + [SMALL_STATE(2247)] = 111833, + [SMALL_STATE(2248)] = 111847, + [SMALL_STATE(2249)] = 111861, + [SMALL_STATE(2250)] = 111875, + [SMALL_STATE(2251)] = 111889, + [SMALL_STATE(2252)] = 111903, + [SMALL_STATE(2253)] = 111917, + [SMALL_STATE(2254)] = 111931, + [SMALL_STATE(2255)] = 111945, + [SMALL_STATE(2256)] = 111959, + [SMALL_STATE(2257)] = 111971, + [SMALL_STATE(2258)] = 111985, + [SMALL_STATE(2259)] = 111999, + [SMALL_STATE(2260)] = 112013, + [SMALL_STATE(2261)] = 112027, + [SMALL_STATE(2262)] = 112041, + [SMALL_STATE(2263)] = 112055, + [SMALL_STATE(2264)] = 112067, + [SMALL_STATE(2265)] = 112081, + [SMALL_STATE(2266)] = 112093, + [SMALL_STATE(2267)] = 112105, + [SMALL_STATE(2268)] = 112119, + [SMALL_STATE(2269)] = 112133, + [SMALL_STATE(2270)] = 112143, + [SMALL_STATE(2271)] = 112157, + [SMALL_STATE(2272)] = 112171, + [SMALL_STATE(2273)] = 112185, + [SMALL_STATE(2274)] = 112199, + [SMALL_STATE(2275)] = 112213, + [SMALL_STATE(2276)] = 112227, + [SMALL_STATE(2277)] = 112241, + [SMALL_STATE(2278)] = 112255, + [SMALL_STATE(2279)] = 112267, + [SMALL_STATE(2280)] = 112281, + [SMALL_STATE(2281)] = 112293, + [SMALL_STATE(2282)] = 112307, + [SMALL_STATE(2283)] = 112319, + [SMALL_STATE(2284)] = 112333, + [SMALL_STATE(2285)] = 112347, + [SMALL_STATE(2286)] = 112361, + [SMALL_STATE(2287)] = 112371, + [SMALL_STATE(2288)] = 112383, + [SMALL_STATE(2289)] = 112397, + [SMALL_STATE(2290)] = 112409, + [SMALL_STATE(2291)] = 112423, + [SMALL_STATE(2292)] = 112437, + [SMALL_STATE(2293)] = 112451, + [SMALL_STATE(2294)] = 112465, + [SMALL_STATE(2295)] = 112479, + [SMALL_STATE(2296)] = 112493, + [SMALL_STATE(2297)] = 112507, + [SMALL_STATE(2298)] = 112521, + [SMALL_STATE(2299)] = 112535, + [SMALL_STATE(2300)] = 112545, + [SMALL_STATE(2301)] = 112559, + [SMALL_STATE(2302)] = 112573, + [SMALL_STATE(2303)] = 112587, + [SMALL_STATE(2304)] = 112601, + [SMALL_STATE(2305)] = 112615, + [SMALL_STATE(2306)] = 112629, + [SMALL_STATE(2307)] = 112641, + [SMALL_STATE(2308)] = 112655, + [SMALL_STATE(2309)] = 112669, + [SMALL_STATE(2310)] = 112683, + [SMALL_STATE(2311)] = 112697, + [SMALL_STATE(2312)] = 112711, + [SMALL_STATE(2313)] = 112725, + [SMALL_STATE(2314)] = 112739, + [SMALL_STATE(2315)] = 112753, + [SMALL_STATE(2316)] = 112767, + [SMALL_STATE(2317)] = 112781, + [SMALL_STATE(2318)] = 112795, + [SMALL_STATE(2319)] = 112805, + [SMALL_STATE(2320)] = 112819, + [SMALL_STATE(2321)] = 112833, + [SMALL_STATE(2322)] = 112847, + [SMALL_STATE(2323)] = 112861, + [SMALL_STATE(2324)] = 112875, + [SMALL_STATE(2325)] = 112889, + [SMALL_STATE(2326)] = 112903, + [SMALL_STATE(2327)] = 112917, + [SMALL_STATE(2328)] = 112931, + [SMALL_STATE(2329)] = 112945, + [SMALL_STATE(2330)] = 112959, + [SMALL_STATE(2331)] = 112973, + [SMALL_STATE(2332)] = 112985, + [SMALL_STATE(2333)] = 112995, + [SMALL_STATE(2334)] = 113009, + [SMALL_STATE(2335)] = 113023, + [SMALL_STATE(2336)] = 113037, + [SMALL_STATE(2337)] = 113051, + [SMALL_STATE(2338)] = 113065, + [SMALL_STATE(2339)] = 113079, + [SMALL_STATE(2340)] = 113093, + [SMALL_STATE(2341)] = 113105, + [SMALL_STATE(2342)] = 113119, + [SMALL_STATE(2343)] = 113131, + [SMALL_STATE(2344)] = 113145, + [SMALL_STATE(2345)] = 113159, + [SMALL_STATE(2346)] = 113173, + [SMALL_STATE(2347)] = 113187, + [SMALL_STATE(2348)] = 113201, + [SMALL_STATE(2349)] = 113215, + [SMALL_STATE(2350)] = 113229, + [SMALL_STATE(2351)] = 113241, + [SMALL_STATE(2352)] = 113255, + [SMALL_STATE(2353)] = 113269, + [SMALL_STATE(2354)] = 113283, + [SMALL_STATE(2355)] = 113297, + [SMALL_STATE(2356)] = 113311, + [SMALL_STATE(2357)] = 113325, + [SMALL_STATE(2358)] = 113339, + [SMALL_STATE(2359)] = 113353, + [SMALL_STATE(2360)] = 113367, + [SMALL_STATE(2361)] = 113381, + [SMALL_STATE(2362)] = 113391, + [SMALL_STATE(2363)] = 113401, + [SMALL_STATE(2364)] = 113413, + [SMALL_STATE(2365)] = 113427, + [SMALL_STATE(2366)] = 113441, + [SMALL_STATE(2367)] = 113455, + [SMALL_STATE(2368)] = 113469, + [SMALL_STATE(2369)] = 113483, + [SMALL_STATE(2370)] = 113497, + [SMALL_STATE(2371)] = 113511, + [SMALL_STATE(2372)] = 113521, + [SMALL_STATE(2373)] = 113535, + [SMALL_STATE(2374)] = 113549, + [SMALL_STATE(2375)] = 113563, + [SMALL_STATE(2376)] = 113577, + [SMALL_STATE(2377)] = 113591, + [SMALL_STATE(2378)] = 113605, + [SMALL_STATE(2379)] = 113619, + [SMALL_STATE(2380)] = 113633, + [SMALL_STATE(2381)] = 113647, + [SMALL_STATE(2382)] = 113661, + [SMALL_STATE(2383)] = 113673, + [SMALL_STATE(2384)] = 113685, + [SMALL_STATE(2385)] = 113697, + [SMALL_STATE(2386)] = 113709, + [SMALL_STATE(2387)] = 113719, + [SMALL_STATE(2388)] = 113733, + [SMALL_STATE(2389)] = 113747, + [SMALL_STATE(2390)] = 113761, + [SMALL_STATE(2391)] = 113775, + [SMALL_STATE(2392)] = 113789, + [SMALL_STATE(2393)] = 113803, + [SMALL_STATE(2394)] = 113817, + [SMALL_STATE(2395)] = 113831, + [SMALL_STATE(2396)] = 113845, + [SMALL_STATE(2397)] = 113859, + [SMALL_STATE(2398)] = 113873, + [SMALL_STATE(2399)] = 113887, + [SMALL_STATE(2400)] = 113901, + [SMALL_STATE(2401)] = 113915, + [SMALL_STATE(2402)] = 113929, + [SMALL_STATE(2403)] = 113943, + [SMALL_STATE(2404)] = 113957, + [SMALL_STATE(2405)] = 113971, + [SMALL_STATE(2406)] = 113985, + [SMALL_STATE(2407)] = 113999, + [SMALL_STATE(2408)] = 114013, + [SMALL_STATE(2409)] = 114027, + [SMALL_STATE(2410)] = 114041, + [SMALL_STATE(2411)] = 114055, + [SMALL_STATE(2412)] = 114065, + [SMALL_STATE(2413)] = 114079, + [SMALL_STATE(2414)] = 114093, + [SMALL_STATE(2415)] = 114107, + [SMALL_STATE(2416)] = 114121, + [SMALL_STATE(2417)] = 114135, + [SMALL_STATE(2418)] = 114149, + [SMALL_STATE(2419)] = 114163, + [SMALL_STATE(2420)] = 114177, + [SMALL_STATE(2421)] = 114191, + [SMALL_STATE(2422)] = 114205, + [SMALL_STATE(2423)] = 114219, + [SMALL_STATE(2424)] = 114229, + [SMALL_STATE(2425)] = 114243, + [SMALL_STATE(2426)] = 114257, + [SMALL_STATE(2427)] = 114271, + [SMALL_STATE(2428)] = 114285, + [SMALL_STATE(2429)] = 114299, + [SMALL_STATE(2430)] = 114311, + [SMALL_STATE(2431)] = 114325, + [SMALL_STATE(2432)] = 114339, + [SMALL_STATE(2433)] = 114353, + [SMALL_STATE(2434)] = 114367, + [SMALL_STATE(2435)] = 114381, + [SMALL_STATE(2436)] = 114395, + [SMALL_STATE(2437)] = 114409, + [SMALL_STATE(2438)] = 114423, + [SMALL_STATE(2439)] = 114437, + [SMALL_STATE(2440)] = 114451, + [SMALL_STATE(2441)] = 114465, + [SMALL_STATE(2442)] = 114475, + [SMALL_STATE(2443)] = 114489, + [SMALL_STATE(2444)] = 114503, + [SMALL_STATE(2445)] = 114517, + [SMALL_STATE(2446)] = 114531, + [SMALL_STATE(2447)] = 114545, + [SMALL_STATE(2448)] = 114559, + [SMALL_STATE(2449)] = 114573, + [SMALL_STATE(2450)] = 114587, + [SMALL_STATE(2451)] = 114601, + [SMALL_STATE(2452)] = 114615, + [SMALL_STATE(2453)] = 114627, + [SMALL_STATE(2454)] = 114641, + [SMALL_STATE(2455)] = 114655, + [SMALL_STATE(2456)] = 114669, + [SMALL_STATE(2457)] = 114683, + [SMALL_STATE(2458)] = 114697, + [SMALL_STATE(2459)] = 114711, + [SMALL_STATE(2460)] = 114721, + [SMALL_STATE(2461)] = 114735, + [SMALL_STATE(2462)] = 114749, + [SMALL_STATE(2463)] = 114763, + [SMALL_STATE(2464)] = 114777, + [SMALL_STATE(2465)] = 114791, + [SMALL_STATE(2466)] = 114805, + [SMALL_STATE(2467)] = 114819, + [SMALL_STATE(2468)] = 114833, + [SMALL_STATE(2469)] = 114847, + [SMALL_STATE(2470)] = 114861, + [SMALL_STATE(2471)] = 114873, + [SMALL_STATE(2472)] = 114887, + [SMALL_STATE(2473)] = 114901, + [SMALL_STATE(2474)] = 114915, + [SMALL_STATE(2475)] = 114929, + [SMALL_STATE(2476)] = 114943, + [SMALL_STATE(2477)] = 114957, + [SMALL_STATE(2478)] = 114971, + [SMALL_STATE(2479)] = 114985, + [SMALL_STATE(2480)] = 114999, + [SMALL_STATE(2481)] = 115013, + [SMALL_STATE(2482)] = 115027, + [SMALL_STATE(2483)] = 115041, + [SMALL_STATE(2484)] = 115055, + [SMALL_STATE(2485)] = 115067, + [SMALL_STATE(2486)] = 115081, + [SMALL_STATE(2487)] = 115095, + [SMALL_STATE(2488)] = 115109, + [SMALL_STATE(2489)] = 115123, + [SMALL_STATE(2490)] = 115137, + [SMALL_STATE(2491)] = 115151, + [SMALL_STATE(2492)] = 115165, + [SMALL_STATE(2493)] = 115179, + [SMALL_STATE(2494)] = 115188, + [SMALL_STATE(2495)] = 115197, + [SMALL_STATE(2496)] = 115206, + [SMALL_STATE(2497)] = 115215, + [SMALL_STATE(2498)] = 115224, + [SMALL_STATE(2499)] = 115233, + [SMALL_STATE(2500)] = 115244, + [SMALL_STATE(2501)] = 115253, + [SMALL_STATE(2502)] = 115262, + [SMALL_STATE(2503)] = 115273, + [SMALL_STATE(2504)] = 115282, + [SMALL_STATE(2505)] = 115291, + [SMALL_STATE(2506)] = 115300, + [SMALL_STATE(2507)] = 115309, + [SMALL_STATE(2508)] = 115318, + [SMALL_STATE(2509)] = 115327, + [SMALL_STATE(2510)] = 115338, + [SMALL_STATE(2511)] = 115347, + [SMALL_STATE(2512)] = 115356, + [SMALL_STATE(2513)] = 115365, + [SMALL_STATE(2514)] = 115374, + [SMALL_STATE(2515)] = 115383, + [SMALL_STATE(2516)] = 115392, + [SMALL_STATE(2517)] = 115401, + [SMALL_STATE(2518)] = 115412, + [SMALL_STATE(2519)] = 115421, + [SMALL_STATE(2520)] = 115430, + [SMALL_STATE(2521)] = 115439, + [SMALL_STATE(2522)] = 115448, + [SMALL_STATE(2523)] = 115457, + [SMALL_STATE(2524)] = 115466, + [SMALL_STATE(2525)] = 115475, + [SMALL_STATE(2526)] = 115486, + [SMALL_STATE(2527)] = 115495, + [SMALL_STATE(2528)] = 115504, + [SMALL_STATE(2529)] = 115515, + [SMALL_STATE(2530)] = 115524, + [SMALL_STATE(2531)] = 115533, + [SMALL_STATE(2532)] = 115544, + [SMALL_STATE(2533)] = 115553, + [SMALL_STATE(2534)] = 115564, + [SMALL_STATE(2535)] = 115573, + [SMALL_STATE(2536)] = 115582, + [SMALL_STATE(2537)] = 115591, + [SMALL_STATE(2538)] = 115600, + [SMALL_STATE(2539)] = 115609, + [SMALL_STATE(2540)] = 115618, + [SMALL_STATE(2541)] = 115629, + [SMALL_STATE(2542)] = 115638, + [SMALL_STATE(2543)] = 115649, + [SMALL_STATE(2544)] = 115658, + [SMALL_STATE(2545)] = 115667, + [SMALL_STATE(2546)] = 115676, + [SMALL_STATE(2547)] = 115687, + [SMALL_STATE(2548)] = 115696, + [SMALL_STATE(2549)] = 115705, + [SMALL_STATE(2550)] = 115714, + [SMALL_STATE(2551)] = 115725, + [SMALL_STATE(2552)] = 115734, + [SMALL_STATE(2553)] = 115743, + [SMALL_STATE(2554)] = 115752, + [SMALL_STATE(2555)] = 115761, + [SMALL_STATE(2556)] = 115772, + [SMALL_STATE(2557)] = 115783, + [SMALL_STATE(2558)] = 115792, + [SMALL_STATE(2559)] = 115803, + [SMALL_STATE(2560)] = 115814, + [SMALL_STATE(2561)] = 115823, + [SMALL_STATE(2562)] = 115832, + [SMALL_STATE(2563)] = 115841, + [SMALL_STATE(2564)] = 115850, + [SMALL_STATE(2565)] = 115859, + [SMALL_STATE(2566)] = 115868, + [SMALL_STATE(2567)] = 115879, + [SMALL_STATE(2568)] = 115888, + [SMALL_STATE(2569)] = 115897, + [SMALL_STATE(2570)] = 115906, + [SMALL_STATE(2571)] = 115915, + [SMALL_STATE(2572)] = 115924, + [SMALL_STATE(2573)] = 115933, + [SMALL_STATE(2574)] = 115944, + [SMALL_STATE(2575)] = 115953, + [SMALL_STATE(2576)] = 115962, + [SMALL_STATE(2577)] = 115971, + [SMALL_STATE(2578)] = 115980, + [SMALL_STATE(2579)] = 115989, + [SMALL_STATE(2580)] = 116000, + [SMALL_STATE(2581)] = 116011, + [SMALL_STATE(2582)] = 116020, + [SMALL_STATE(2583)] = 116029, + [SMALL_STATE(2584)] = 116038, + [SMALL_STATE(2585)] = 116047, + [SMALL_STATE(2586)] = 116056, + [SMALL_STATE(2587)] = 116065, + [SMALL_STATE(2588)] = 116076, + [SMALL_STATE(2589)] = 116087, + [SMALL_STATE(2590)] = 116098, + [SMALL_STATE(2591)] = 116109, + [SMALL_STATE(2592)] = 116120, + [SMALL_STATE(2593)] = 116129, + [SMALL_STATE(2594)] = 116138, + [SMALL_STATE(2595)] = 116146, + [SMALL_STATE(2596)] = 116154, + [SMALL_STATE(2597)] = 116162, + [SMALL_STATE(2598)] = 116170, + [SMALL_STATE(2599)] = 116178, + [SMALL_STATE(2600)] = 116186, + [SMALL_STATE(2601)] = 116194, + [SMALL_STATE(2602)] = 116202, + [SMALL_STATE(2603)] = 116210, + [SMALL_STATE(2604)] = 116218, + [SMALL_STATE(2605)] = 116226, + [SMALL_STATE(2606)] = 116234, + [SMALL_STATE(2607)] = 116242, + [SMALL_STATE(2608)] = 116250, + [SMALL_STATE(2609)] = 116258, + [SMALL_STATE(2610)] = 116266, + [SMALL_STATE(2611)] = 116274, + [SMALL_STATE(2612)] = 116282, + [SMALL_STATE(2613)] = 116290, + [SMALL_STATE(2614)] = 116298, + [SMALL_STATE(2615)] = 116306, + [SMALL_STATE(2616)] = 116314, + [SMALL_STATE(2617)] = 116322, + [SMALL_STATE(2618)] = 116330, + [SMALL_STATE(2619)] = 116338, + [SMALL_STATE(2620)] = 116346, + [SMALL_STATE(2621)] = 116354, + [SMALL_STATE(2622)] = 116362, + [SMALL_STATE(2623)] = 116370, + [SMALL_STATE(2624)] = 116378, + [SMALL_STATE(2625)] = 116386, + [SMALL_STATE(2626)] = 116394, + [SMALL_STATE(2627)] = 116402, + [SMALL_STATE(2628)] = 116410, + [SMALL_STATE(2629)] = 116418, + [SMALL_STATE(2630)] = 116426, + [SMALL_STATE(2631)] = 116434, + [SMALL_STATE(2632)] = 116442, + [SMALL_STATE(2633)] = 116450, + [SMALL_STATE(2634)] = 116458, + [SMALL_STATE(2635)] = 116466, + [SMALL_STATE(2636)] = 116474, + [SMALL_STATE(2637)] = 116482, + [SMALL_STATE(2638)] = 116490, + [SMALL_STATE(2639)] = 116498, + [SMALL_STATE(2640)] = 116506, + [SMALL_STATE(2641)] = 116514, + [SMALL_STATE(2642)] = 116522, + [SMALL_STATE(2643)] = 116530, + [SMALL_STATE(2644)] = 116538, + [SMALL_STATE(2645)] = 116546, + [SMALL_STATE(2646)] = 116554, + [SMALL_STATE(2647)] = 116562, + [SMALL_STATE(2648)] = 116570, + [SMALL_STATE(2649)] = 116578, + [SMALL_STATE(2650)] = 116586, + [SMALL_STATE(2651)] = 116594, + [SMALL_STATE(2652)] = 116602, + [SMALL_STATE(2653)] = 116610, + [SMALL_STATE(2654)] = 116618, + [SMALL_STATE(2655)] = 116626, + [SMALL_STATE(2656)] = 116634, + [SMALL_STATE(2657)] = 116642, + [SMALL_STATE(2658)] = 116650, + [SMALL_STATE(2659)] = 116658, + [SMALL_STATE(2660)] = 116666, + [SMALL_STATE(2661)] = 116674, + [SMALL_STATE(2662)] = 116682, + [SMALL_STATE(2663)] = 116690, + [SMALL_STATE(2664)] = 116698, + [SMALL_STATE(2665)] = 116706, + [SMALL_STATE(2666)] = 116714, + [SMALL_STATE(2667)] = 116722, + [SMALL_STATE(2668)] = 116730, + [SMALL_STATE(2669)] = 116738, + [SMALL_STATE(2670)] = 116746, + [SMALL_STATE(2671)] = 116754, + [SMALL_STATE(2672)] = 116762, + [SMALL_STATE(2673)] = 116770, + [SMALL_STATE(2674)] = 116778, + [SMALL_STATE(2675)] = 116786, + [SMALL_STATE(2676)] = 116794, + [SMALL_STATE(2677)] = 116802, + [SMALL_STATE(2678)] = 116810, + [SMALL_STATE(2679)] = 116818, + [SMALL_STATE(2680)] = 116826, + [SMALL_STATE(2681)] = 116834, + [SMALL_STATE(2682)] = 116842, + [SMALL_STATE(2683)] = 116850, + [SMALL_STATE(2684)] = 116858, + [SMALL_STATE(2685)] = 116866, + [SMALL_STATE(2686)] = 116874, + [SMALL_STATE(2687)] = 116882, + [SMALL_STATE(2688)] = 116890, + [SMALL_STATE(2689)] = 116898, + [SMALL_STATE(2690)] = 116906, + [SMALL_STATE(2691)] = 116914, + [SMALL_STATE(2692)] = 116922, + [SMALL_STATE(2693)] = 116930, + [SMALL_STATE(2694)] = 116938, + [SMALL_STATE(2695)] = 116946, + [SMALL_STATE(2696)] = 116954, + [SMALL_STATE(2697)] = 116962, + [SMALL_STATE(2698)] = 116970, + [SMALL_STATE(2699)] = 116978, + [SMALL_STATE(2700)] = 116986, + [SMALL_STATE(2701)] = 116994, + [SMALL_STATE(2702)] = 117002, + [SMALL_STATE(2703)] = 117010, + [SMALL_STATE(2704)] = 117018, + [SMALL_STATE(2705)] = 117026, + [SMALL_STATE(2706)] = 117034, + [SMALL_STATE(2707)] = 117042, + [SMALL_STATE(2708)] = 117050, + [SMALL_STATE(2709)] = 117058, + [SMALL_STATE(2710)] = 117066, + [SMALL_STATE(2711)] = 117074, + [SMALL_STATE(2712)] = 117082, + [SMALL_STATE(2713)] = 117090, + [SMALL_STATE(2714)] = 117098, + [SMALL_STATE(2715)] = 117106, + [SMALL_STATE(2716)] = 117114, + [SMALL_STATE(2717)] = 117122, + [SMALL_STATE(2718)] = 117130, + [SMALL_STATE(2719)] = 117138, + [SMALL_STATE(2720)] = 117146, + [SMALL_STATE(2721)] = 117154, + [SMALL_STATE(2722)] = 117162, + [SMALL_STATE(2723)] = 117170, + [SMALL_STATE(2724)] = 117178, + [SMALL_STATE(2725)] = 117186, + [SMALL_STATE(2726)] = 117194, + [SMALL_STATE(2727)] = 117202, + [SMALL_STATE(2728)] = 117210, + [SMALL_STATE(2729)] = 117218, + [SMALL_STATE(2730)] = 117226, + [SMALL_STATE(2731)] = 117234, + [SMALL_STATE(2732)] = 117242, + [SMALL_STATE(2733)] = 117250, + [SMALL_STATE(2734)] = 117258, + [SMALL_STATE(2735)] = 117266, + [SMALL_STATE(2736)] = 117274, + [SMALL_STATE(2737)] = 117282, + [SMALL_STATE(2738)] = 117290, + [SMALL_STATE(2739)] = 117298, + [SMALL_STATE(2740)] = 117306, + [SMALL_STATE(2741)] = 117314, + [SMALL_STATE(2742)] = 117322, + [SMALL_STATE(2743)] = 117330, + [SMALL_STATE(2744)] = 117338, + [SMALL_STATE(2745)] = 117346, + [SMALL_STATE(2746)] = 117354, + [SMALL_STATE(2747)] = 117362, + [SMALL_STATE(2748)] = 117370, + [SMALL_STATE(2749)] = 117378, + [SMALL_STATE(2750)] = 117386, + [SMALL_STATE(2751)] = 117394, + [SMALL_STATE(2752)] = 117402, + [SMALL_STATE(2753)] = 117410, + [SMALL_STATE(2754)] = 117418, + [SMALL_STATE(2755)] = 117426, + [SMALL_STATE(2756)] = 117434, + [SMALL_STATE(2757)] = 117442, + [SMALL_STATE(2758)] = 117450, + [SMALL_STATE(2759)] = 117458, + [SMALL_STATE(2760)] = 117466, + [SMALL_STATE(2761)] = 117474, + [SMALL_STATE(2762)] = 117482, + [SMALL_STATE(2763)] = 117490, + [SMALL_STATE(2764)] = 117498, + [SMALL_STATE(2765)] = 117506, + [SMALL_STATE(2766)] = 117514, + [SMALL_STATE(2767)] = 117522, + [SMALL_STATE(2768)] = 117530, + [SMALL_STATE(2769)] = 117538, + [SMALL_STATE(2770)] = 117546, + [SMALL_STATE(2771)] = 117554, + [SMALL_STATE(2772)] = 117562, + [SMALL_STATE(2773)] = 117570, + [SMALL_STATE(2774)] = 117578, + [SMALL_STATE(2775)] = 117586, + [SMALL_STATE(2776)] = 117594, + [SMALL_STATE(2777)] = 117602, + [SMALL_STATE(2778)] = 117610, + [SMALL_STATE(2779)] = 117618, + [SMALL_STATE(2780)] = 117626, + [SMALL_STATE(2781)] = 117634, + [SMALL_STATE(2782)] = 117642, + [SMALL_STATE(2783)] = 117650, + [SMALL_STATE(2784)] = 117658, + [SMALL_STATE(2785)] = 117666, + [SMALL_STATE(2786)] = 117674, + [SMALL_STATE(2787)] = 117682, + [SMALL_STATE(2788)] = 117690, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -127567,2441 +126783,2427 @@ 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(616), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2577), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2797), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [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(462), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(518), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2697), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2669), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [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(296), - [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(1283), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 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(1284), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2741), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(917), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(544), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(294), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(307), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(913), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(308), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(931), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(563), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(896), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(618), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2520), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2493), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2751), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2643), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2698), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), + [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(268), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(907), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2755), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(896), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(534), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(269), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(318), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(894), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(319), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(884), + [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(493), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(866), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 109), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 109), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 44), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 44), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 62), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 62), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 42), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 42), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(571), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 37), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 37), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(605), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(606), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(594), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 49), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 49), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 23), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 23), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 49), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 49), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 130), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 130), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 129), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 129), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 117), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 117), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 137), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 137), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 105), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 105), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 56), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 56), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 62), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 62), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 109), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 109), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 44), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 44), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 42), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 42), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 62), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 62), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(599), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(591), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 37), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 37), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 49), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 49), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(600), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 49), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 49), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(507), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 23), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 23), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 117), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 117), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 129), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 129), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 130), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 130), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 137), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 137), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 105), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 105), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 62), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 62), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 37), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 37), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 113), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 113), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 53), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 53), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 56), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 56), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 42), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 42), [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 42), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 42), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 113), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 113), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 53), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 53), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 41), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 41), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 42), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 42), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 62), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 62), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 39), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 39), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 60), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 60), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 62), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 62), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 107), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 107), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 108), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 108), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), - [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, 115), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 115), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 118), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 118), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 119), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 119), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 126), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 126), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 127), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 127), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 54), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 54), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 42), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 42), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 136), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 136), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 43), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 43), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 45), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 45), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 59), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 59), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 33), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 33), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [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_set_comprehension, 4, 0, 34), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 33), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 33), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1719), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 33), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 33), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(965), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(2728), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(862), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(965), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(897), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(865), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(897), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(957), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(866), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(957), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(904), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(869), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(904), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(954), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(864), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(954), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(932), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(863), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(932), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(945), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(867), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(945), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(876), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(868), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(876), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 22), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(532), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 48), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(338), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(486), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 22), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(498), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(540), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2745), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(506), - [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(552), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(490), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), - [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 46), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(577), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 70), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2765), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2802), - [3428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2701), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(548), - [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), - [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 38), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 75), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 75), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 18), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 44), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 51), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 51), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 36), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 52), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 52), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 109), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 26), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 26), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 69), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 19), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 18), - [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 47), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 26), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 26), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2039), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 110), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 122), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(523), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 48), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 44), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 110), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 122), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1561), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1535), - [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), SHIFT_REPEAT(562), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 27), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), - [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2256), - [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1532), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2639), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 46), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), SHIFT_REPEAT(1557), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), SHIFT_REPEAT(432), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1664), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1533), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2400), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 41), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 41), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 62), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 62), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 42), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 42), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 39), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 39), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 45), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 45), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 115), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 115), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 59), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 59), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 118), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 118), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 119), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 119), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 126), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 126), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 127), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 127), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), + [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, 78), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), + [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, 91), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 60), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 60), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 136), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 136), + [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_match_statement, 6, 0, 83), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 54), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 54), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 42), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 42), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 43), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 43), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 62), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 62), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 107), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 107), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 108), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 108), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 21), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 21), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), + [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 33), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 33), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 33), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 33), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 33), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 33), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 34), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 34), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 34), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 34), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), + [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}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(909), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(2649), + [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(854), + [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(909), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(933), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(847), + [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(933), + [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(893), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(852), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(893), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(859), + [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(850), + [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(859), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(858), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(849), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(858), + [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(927), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(848), + [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(927), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(908), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(846), + [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(908), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(914), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(851), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(914), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 21), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 48), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), + [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(523), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 22), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(335), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), + [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(584), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 22), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 21), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(527), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(480), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(487), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(520), + [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(582), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(569), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 46), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), + [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2710), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), + [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2699), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), + [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 70), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2637), + [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(777), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 109), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 26), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 26), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 44), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 75), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 75), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 19), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(443), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2634), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 36), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 18), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 51), + [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 51), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 52), + [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 52), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 47), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 38), + [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(404), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 69), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 26), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 26), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 18), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 48), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 44), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 110), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 110), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 122), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 122), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 27), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), + [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2311), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), + [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), SHIFT_REPEAT(506), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1519), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [4073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2283), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 29), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(327), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(395), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 46), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 29), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 50), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 50), - [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(484), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), - [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(371), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 110), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 133), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), SHIFT_REPEAT(1541), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), SHIFT_REPEAT(436), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(546), + [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 50), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 50), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(533), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(508), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 141), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 68), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 138), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 111), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 30), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 31), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 33), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 134), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 33), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 135), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 111), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 33), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 124), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 125), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 77), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 30), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 31), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 53), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 138), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 139), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 140), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 68), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 141), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 76), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 21), - [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4937] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 33), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 139), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 53), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 21), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 76), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 140), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 133), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 124), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 77), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 125), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 135), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 110), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4757] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), }; enum ts_external_scanner_symbol_identifiers { @@ -130077,24 +129279,24 @@ static const bool ts_external_scanner_states[20][EXTERNAL_TOKEN_COUNT] = { [7] = { [ts_external_token_string_start] = true, [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token_RPAREN] = true, }, [8] = { [ts_external_token_string_start] = true, [ts_external_token_comment] = true, - [ts_external_token_RPAREN] = true, + [ts_external_token_RBRACK] = true, }, [9] = { [ts_external_token__newline] = true, [ts_external_token_comment] = true, }, [10] = { + [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, }, [11] = { - [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, @@ -130154,7 +129356,7 @@ void tree_sitter_python_external_scanner_deserialize(void *, const char *, unsig TS_PUBLIC const TSLanguage *tree_sitter_python(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -130162,6 +129364,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -130172,11 +129375,14 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, + .supertype_map_slices = ts_supertype_map_slices, + .supertype_map_entries = ts_supertype_map_entries, + .supertype_symbols = ts_supertype_symbols, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, @@ -130190,6 +129396,14 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { tree_sitter_python_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "python", + .reserved_words = &ts_reserved_words[0][0], + .max_reserved_word_set_size = 35, + .metadata = { + .major_version = 0, + .minor_version = 23, + .patch_version = 6, + }, }; return &language; } diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599b..858107de 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,6 +18,11 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -26,10 +31,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -79,6 +85,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -93,7 +105,7 @@ typedef struct { } TSCharacterRange; struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -109,13 +121,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -129,15 +141,23 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; - TSCharacterRange *range = &ranges[mid_index]; + const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { @@ -145,7 +165,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t } size -= half_size; } - TSCharacterRange *range = &ranges[index]; + const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } diff --git a/test/corpus/errors.txt b/test/corpus/errors.txt index d0bf103c..f27a2636 100644 --- a/test/corpus/errors.txt +++ b/test/corpus/errors.txt @@ -29,3 +29,46 @@ def a(b): (string_end))) (expression_statement (identifier))))) + +================================================= +Error detected at globally reserved keyword +================================================= + +def test_comprehension(): + [x for. # Should error here, and not use def as a method call + + def valid_func(): # Should parse as valid function + pass + +def test_incomplete_call(): + print( # Should error here + class Example: # Should still parse as valid class definition + pass + +--- + +(module + (function_definition + (identifier) + (parameters) + (ERROR + (identifier)) + (comment) + (block + (function_definition + (identifier) + (parameters) + (comment) + (block + (pass_statement))))) + (function_definition + (identifier) + (parameters) + (ERROR) + (comment) + (block + (class_definition + (identifier) + (comment) + (block + (pass_statement))))))